This commit is contained in:
uf0 2020-11-08 16:34:25 +01:00
parent 2ecb98a842
commit 2a7a262ad6
2 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -18,8 +18,8 @@ module.exports = {
}, },
output: { output: {
path: __dirname + '/public', path: __dirname + '/public',
filename: '[name].js', filename: 'bundle.js',
chunkFilename: '[name].[id].js' chunkFilename: 'bundle.[id].js'
}, },
module: { module: {
rules: [ rules: [
@ -50,7 +50,7 @@ module.exports = {
mode, mode,
plugins: [ plugins: [
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename: '[name].css' filename: 'bundle.css'
}) })
], ],
devtool: prod ? false: 'source-map' devtool: prod ? false: 'source-map'