LoginSignup
2
0

More than 1 year has passed since last update.

React+Typescriptでのbuildエラー(create-react-app)

Last updated at Posted at 2022-01-15

エラー内容

create-react-appで作成したTypescriptプロジェクト1をnpm run buildするとエラー

TypeError: MiniCssExtractPlugin is not a constructor

原因

mini-css-extract-plugin がバージョン2.5.0にアップデートされたことでのエラー

解決方法

mini-css-extract-plugin のバージョンダウン

npm i -D --save-exact mini-css-extract-plugin@2.4.5

参考URL


  1. npx create-react-app プロジェクト名 --template typescript 

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0