Slow sass-loader Build Times with Webpack
I think there are a few issues: 1: It may be because you haven’t specified which files to test against (so webpack may be searching everything): … “test”: {}, “use”: [“myApp/node_modules/mini-css-extract-plugin/dist/loader.js”, { “loader”: “css-loader” } … try replacing test: {} with test: /\.(sa|sc|c)ss$/ or test: /\.module.(sa|sc|c)ss$/ if using css modules 1b: try modifying the test … Read more