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?
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.
You can try this command which I found on https://www.npmjs.com/package/extract-text-webpack-plugin
npm i extract-text-webpack-plugin
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With