Closed jhwegener closed 7 years ago
Module build failed: Error: "extract-text-webpack-plugin" loader is used without the corresponding plugin, refer to https://github.com/webpack/extract-text-webpack-plugin for the usage example
This error occurred, if you have files like css in a dependency lib. Can be fixed with two lines in webpack.common.js:
at top: const ExtractTextPlugin = require("extract-text-webpack-plugin");
in plugins-section: new ExtractTextPlugin("*.css")
merged, so I'm closing this issue now
Module build failed: Error: "extract-text-webpack-plugin" loader is used without the corresponding plugin, refer to https://github.com/webpack/extract-text-webpack-plugin for the usage example
This error occurred, if you have files like css in a dependency lib. Can be fixed with two lines in webpack.common.js:
at top: const ExtractTextPlugin = require("extract-text-webpack-plugin");
in plugins-section: new ExtractTextPlugin("*.css")