File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,11 @@ const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
1111module . 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 } ,
You can’t perform that action at this time.
0 commit comments