Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

webpack.config.js

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

I immediately receive this error if I just implement the plugin:

module.js:339
    throw err;
    ^

Error: Cannot find module 'webpack/lib/ConcatSource'
    at Function.Module._resolveFilename (module.js:337:15)
    at Function.Module._load (module.js:287:25)
    at Module.require (module.js:366:17)
    at require (module.js:385:17)
    at Object.<anonymous> (/Users/lucamormile/Documents/Lavori/Webapps/React/webpack_test/node_modules/extract-text-webpack-plugin/index.js:5:20)
    at Module._compile (module.js:425:26)
    at Object.Module._extensions..js (module.js:432:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:311:12)
    at Module.require (module.js:366:17)

What did i forgot?

like image 646
Luca Mormile Avatar asked Nov 30 '15 12:11

Luca Mormile


2 Answers

Do you have webpack module on your project?
If not, install it locally (not globally):

$ npm install webpack [--save-dev]

extract-text-webpack-plugin needs webpack as peer dependency, but npm 3 doesn't install peer dependencies automatically.

like image 96
htanjo Avatar answered Oct 24 '22 04:10

htanjo


You can try this command which I found on https://www.npmjs.com/package/extract-text-webpack-plugin

npm i extract-text-webpack-plugin
like image 42
Sandy Duan Avatar answered Oct 24 '22 05:10

Sandy Duan