diff --git a/examples/emotion-css-in-js/config/config.js b/examples/emotion-css-in-js/config/config.js index 638e17a8..21f3ceeb 100644 --- a/examples/emotion-css-in-js/config/config.js +++ b/examples/emotion-css-in-js/config/config.js @@ -2,6 +2,6 @@ exports.default = { CLIENT_ENTRY: './examples/emotion-css-in-js/src/client/index.tsx', SERVER_ENTRY: './examples/emotion-css-in-js/src/server/start.ts', - TS_CONFIG_CLIENT: 'examples/emotion-css-in-js/src/tsconfig.json', - TS_CONFIG_SERVER: 'examples/emotion-css-in-js/src/tsconfig.json', + TS_CONFIG_CLIENT: 'examples/emotion-css-in-js/tsconfig.json', + TS_CONFIG_SERVER: 'examples/emotion-css-in-js/tsconfig.json', } diff --git a/package.json b/package.json index 3d8262c6..e1f495bd 100644 --- a/package.json +++ b/package.json @@ -47,9 +47,9 @@ "watch:simple-ssr-example": "yarn pwt watch server -p examples/simple-ssr", "explore-bundle:simple-ssr-example": "yarn pwt explore-bundle -p examples/simple-ssr", "~~~ ssr-with-routing ~~~": "", - "build:ssr-with-routing-example": "yarn pwt build -p examples/ssr-with-routing", - "watch:ssr-with-routing-example": "yarn pwt watch server -p examples/ssr-with-routing", - "explore-bundle:ssr-with-routing-example": "yarn pwt explore-bundle -p examples/ssr-with-routing", + "build:ssr-with-routing-example": "export NODE_OPTIONS=--openssl-legacy-provider && yarn pwt build -p examples/ssr-with-routing", + "watch:ssr-with-routing-example": "export NODE_OPTIONS=--openssl-legacy-provider && yarn pwt watch server -p examples/ssr-with-routing", + "explore-bundle:ssr-with-routing-example": "export NODE_OPTIONS=--openssl-legacy-provider && yarn pwt explore-bundle -p examples/ssr-with-routing", "~~~ ssr-with-data-loading-using-redux ~~~": "", "build:ssr-with-data-loading-using-redux-example": "yarn pwt build -p examples/ssr-with-data-loading-using-redux", "watch:ssr-with-data-loading-using-redux-example": "yarn pwt watch server -p examples/ssr-with-data-loading-using-redux",