CSS Bundle File Name in Webpack
The filename setting allows you to set the name of the CSS bundle file:
plugins: [new MiniCssExtractPlugin({
filename: 'build.css'
})],
Collect all your CSS into a file named styles.css.
The filename setting allows you to set the name of the CSS bundle file:
plugins: [new MiniCssExtractPlugin({
filename: 'build.css'
})],
Collect all your CSS into a file named styles.css.