Howto's Exclude node_modules webpack.cc-config.js 1 2 3 4 5 6 7 8module.exports = { loaders: { //Exclude all css files from node modules directory css: { exclude: /node_modules/, }, }, }; Change Destination Output webpack.config.js 1 2 3 4 5 6 7const path = require("path"); module.exports = { output: { path: path.join(process.cwd(), "another-dist") }, devServer: { contentBase: path.join(process.cwd(), "another-dist") } };