From fcd204321a3b9411fedcd2ab8f8ce6581d46d165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ken-H=C3=A5vard=20Lieng?= Date: Sun, 15 Apr 2018 00:58:51 +0200 Subject: [PATCH] Fix css bundle name --- client/webpack.config.prod.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/webpack.config.prod.js b/client/webpack.config.prod.js index d2c827f6..aaabb626 100644 --- a/client/webpack.config.prod.js +++ b/client/webpack.config.prod.js @@ -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' }