Skip to content

Commit d5abbe2

Browse files
committed
fix: removed dead code
1 parent a950f5d commit d5abbe2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

webpack.config.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
1111
module.exports = async (env, argv) => {
1212
const isProduction = argv.mode === 'production'
1313
const config = {
14-
// Path to your entry point. From this file Webpack will begin his work
14+
// Path to your entry point. From this file Webpack will begin it's work
1515
entry: {
1616
'CoCreate': './src/index.js'
1717
},
1818

19-
// Path and filename of your result bundle.
20-
// Webpack will bundle all JavaScript into this file
2119
output: {
2220
path: path.resolve(__dirname, 'dist'),
2321
filename: isProduction ? '[name].min.js' : '[name].js',
@@ -45,7 +43,6 @@ module.exports = async (env, argv) => {
4543
})
4644
],
4745

48-
4946
// devServer: {
5047
// hot: true
5148
// },
@@ -116,7 +113,6 @@ module.exports = async (env, argv) => {
116113
enforceSizeThreshold: 50000,
117114
cacheGroups: {
118115
defaultVendors: false,
119-
120116
},
121117
},
122118
},

0 commit comments

Comments
 (0)