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: [
new MiniCssExtractPlugin({
filename: '[name].css'
filename: 'bundle.css'
})
],
optimization: {
splitChunks: {
cacheGroups: {
styles: {
name: 'bundle',
test: /\.css$/,
chunks: 'all'
}