1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

TypeError: MiniCssExtractPlugin is not a constructorの解消方法

Last updated at Posted at 2022-01-27

create-react-appで作成したTypescriptプロジェクトをnpm run buildした際に、
エラーが出て困った時に解消した方法です。

1643256862064.jpg

##エラーの内容

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

##参考にしたサイト
https://github.com/facebook/create-react-app/issues/11930

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?