⊗tlWpCsCBN 33 of 55 menu

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.

enru