Fix css bundle name

This commit is contained in:
Ken-Håvard Lieng 2018-04-15 00:58:51 +02:00
parent d08bd43ba0
commit fcd204321a

View File

@ -59,14 +59,13 @@ module.exports = {
}, },
plugins: [ plugins: [
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename: '[name].css' filename: 'bundle.css'
}) })
], ],
optimization: { optimization: {
splitChunks: { splitChunks: {
cacheGroups: { cacheGroups: {
styles: { styles: {
name: 'bundle',
test: /\.css$/, test: /\.css$/,
chunks: 'all' chunks: 'all'
} }