1. 程式人生 > >webpack:Cannot find module 'extract-text-webpack-plugin'

webpack:Cannot find module 'extract-text-webpack-plugin'

rac not fig all 原因 config dev pan 問題:

問題:

在終端中使用此命令安裝了extract-text-webpack-plugin,npm install -g extract-text-webpack-plugin並在webpack.config.js文件中導入,但是運行終端npm run build後,仍然收到錯誤顯示:Cannot find module ‘extract-text-webpack-plugin‘。

原因:

extract-text-webpack-plugi不是全局安裝

解決方法:

1、添加-g標誌來安裝package.json(npm init -y -g);

2、添加-g標誌來安裝npm init您的項目目錄(npm install webpack --save-dev -g);

3、再在終端輸入npm install --save extract-text-webpack-plugin

webpack:Cannot find module 'extract-text-webpack-plugin'