Webpack - extract-text-webpack-plugin Cannot find module

后端 未结 6 2573
面向向阳花
面向向阳花 2021-02-18 21:45

webpack.config.js

var ExtractTextPlugin = require(\"extract-text-webpack-plugin\");

I immediately receive this error if I just

6条回答
  •  没有蜡笔的小新
    2021-02-18 22:12

    Simple fix

    npm install extract-text-webpack-plugin --save-dev
    

    https://www.npmjs.com/package/extract-text-webpack-plugin

提交回复
热议问题