Describe the bug
After creating a fresh new app using yarn create react-app my-app --template typescript the build process failed with an error from my_project/node_modules/react-scripts/config/webpack.config.js:664
Based on last releases of all componants inside node 16.13.0
Error is:
yarn build
yarn run v1.22.17
$ react-scripts build
/workspace/my_app/node_modules/react-scripts/config/webpack.config.js:664
new MiniCssExtractPlugin({
^
TypeError: MiniCssExtractPlugin is not a constructor
at module.exports (/workspace/my_app//node_modules/react-scripts/config/webpack.config.js:664:9)
at Object.<anonymous> (/workspace/my_app/node_modules/react-scripts/scripts/build.js:58:16)
at Module._compile (node:internal/modules/cjs/loader:1101:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
at node:internal/main/run_main_module:17:47
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Did you try recovering your dependencies?
Yes, getting de fresh project from git or from scratch, see "Steps to reproduce"
Environment
Steps to reproduce
Easy to reproduce craete a fresh new project like this :
yarn create react-app my-app --template typescript
cd my-app
yarn install
yarn build
Using yarn start, the dev mode is working fine.
Expected behavior
A built app.
Actual behavior
Build failed and the app is not ready for production.
Describe the bug
After creating a fresh new app using
yarn create react-app my-app --template typescriptthe build process failed with an error frommy_project/node_modules/react-scripts/config/webpack.config.js:664Based on last releases of all componants inside node 16.13.0
Error is:
Did you try recovering your dependencies?
Yes, getting de fresh project from git or from scratch, see "Steps to reproduce"
Environment
Steps to reproduce
Easy to reproduce craete a fresh new project like this :
Using yarn start, the dev mode is working fine.
Expected behavior
A built app.
Actual behavior
Build failed and the app is not ready for production.