1. ホーム
  2. node.js

[解決済み] npm run build` コマンドを実行すると、エラー `TypeError: MiniCssExtractPlugin はコンストラクタではありません`。

2022-03-03 09:52:12

質問

reactを使ってアプリを作っているのですが、以下のような環境で正常に動作します。 npm start しかし、アプリをビルドしようとすると、以下のエラーが表示されます。

PS D:\ ****\ **\*\profile> npm run build

> [email protected] build
> react-scripts build

D:\ ****\ **\profile\node_modules\react-scripts\config\webpack.config.js:664
        new MiniCssExtractPlugin({
        ^

TypeError: MiniCssExtractPlugin is not a constructor
    at module.exports (D:\Documents\Project\React\profile\node_modules\react-scripts\config\webpack.config.js:664:9)
    at Object.<anonymous> (D:\Documents\Project\React\profile\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


を使っています。

<テーブル パッケージ名 バージョン ノード 16.13.2 npm 8.1.2 npx 8.1.2

これは私の package.json ファイルを作成します。

{
  "name": "profile",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@testing-library/jest-dom": "^5.16.1",
    "@testing-library/react": "^12.1.2",
    "@testing-library/user-event": "^13.5.0",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-scripts": "5.0.0",
    "web-vitals": "^2.1.3"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  }
}


また、nodeパッケージ全体を再インストールしようとしましたが、何度もこのエラーが発生します。

どうすればいいですか?

mini-css-extract-pluginのバージョン2.5.0にアップデートがあります。で追加して一時的に直しました。 package.json :

 "overrides": {
    "mini-css-extract-plugin": "2.4.5"
  }

を使用します。 npm のバージョンに初挑戦します。

npm i -D --save-exact [email protected]