I was able to get min-css-extract-plugin top generate css files just fine, but I can't seem to get it working with SASS. It runs great when I'm using the webpack dev server, but it keeps inserting my scss into my javascript file instead of creating a separate CSS file.
I have index.html, index.js and main.scss stored under /src
webpack.config.js:
const MiniCssExtractPlugin = require("mini-css-extract-plugin")
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: [
// fallback to style-loader in development
process.env.NODE_ENV !== 'production' ? 'style-loader' : MiniCssExtractPlugin.loader,
"css-loader",
"sass-loader"
]
}
]
},
plugins: [
new MiniCssExtractPlugin({
filename: "[name].css",
chunkFilename: "[id].css"
})
]
}
To have
mini-css-extract-plugin
actually extract your CSS into a separate file, you need to import your CSS (or other extension) into anentry
file (index.js
in your case). Additionally, usingprocess.env.NODE_ENV
's value to determine development or production settings inside your Webpack configuration does not actually work.From Webpack's production configuration guide:
You'll need to write your CSS rule without the
style-loader
formini-css-extract-plugin
's loader to take effect:Then, since you remove
style-loader
from the rule, you need to create separate Webpack configurations for production and development so you can use it in development.