diff --git a/public/favicon.png b/public/favicon.png index 7e6f5eb..8ac1afc 100644 Binary files a/public/favicon.png and b/public/favicon.png differ diff --git a/webpack.config.js b/webpack.config.js index a329af1..3a48e7c 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -18,8 +18,8 @@ module.exports = { }, output: { path: __dirname + '/public', - filename: '[name].js', - chunkFilename: '[name].[id].js' + filename: 'bundle.js', + chunkFilename: 'bundle.[id].js' }, module: { rules: [ @@ -50,7 +50,7 @@ module.exports = { mode, plugins: [ new MiniCssExtractPlugin({ - filename: '[name].css' + filename: 'bundle.css' }) ], devtool: prod ? false: 'source-map'