|
|
@ -113,45 +113,45 @@ module.exports = { |
|
|
|
return options |
|
|
|
return options |
|
|
|
}) |
|
|
|
}) |
|
|
|
.end(); |
|
|
|
.end(); |
|
|
|
|
|
|
|
//
|
|
|
|
config.when(!IS_PROD, |
|
|
|
// config.when(!IS_PROD,
|
|
|
|
config => { |
|
|
|
// config => {
|
|
|
|
config |
|
|
|
// config
|
|
|
|
.plugin('ScriptExtHtmlWebpackPlugin') |
|
|
|
// .plugin('ScriptExtHtmlWebpackPlugin')
|
|
|
|
.after('html') |
|
|
|
// .after('html')
|
|
|
|
.use('script-ext-html-webpack-plugin', [{ |
|
|
|
// .use('script-ext-html-webpack-plugin', [{
|
|
|
|
// `runtime` must same as runtimeChunk name. default is `runtime`
|
|
|
|
// // `runtime` must same as runtimeChunk name. default is `runtime`
|
|
|
|
inline: /runtime\..*\.js$/ |
|
|
|
// inline: /runtime\..*\.js$/
|
|
|
|
}]) |
|
|
|
// }])
|
|
|
|
.end(); |
|
|
|
// .end();
|
|
|
|
config |
|
|
|
// config
|
|
|
|
.optimization.splitChunks({ |
|
|
|
// .optimization.splitChunks({
|
|
|
|
chunks: 'all', |
|
|
|
// chunks: 'all',
|
|
|
|
cacheGroups: { |
|
|
|
// cacheGroups: {
|
|
|
|
libs: { |
|
|
|
// libs: {
|
|
|
|
name: 'chunk-libs', |
|
|
|
// name: 'chunk-libs',
|
|
|
|
test: /[\\/]node_modules[\\/]/, |
|
|
|
// test: /[\\/]node_modules[\\/]/,
|
|
|
|
priority: 10, |
|
|
|
// priority: 10,
|
|
|
|
chunks: 'initial' // only package third parties that are initially dependent
|
|
|
|
// chunks: 'initial' // only package third parties that are initially dependent
|
|
|
|
}, |
|
|
|
// },
|
|
|
|
elementUI: { |
|
|
|
// elementUI: {
|
|
|
|
name: 'chunk-elementUI', // split elementUI into a single package
|
|
|
|
// name: 'chunk-elementUI', // split elementUI into a single package
|
|
|
|
priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
|
// priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
|
test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
|
|
// test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
|
|
}, |
|
|
|
// },
|
|
|
|
commons: { |
|
|
|
// commons: {
|
|
|
|
name: 'chunk-commons', |
|
|
|
// name: 'chunk-commons',
|
|
|
|
test: resolve('src/components'), // can customize your rules
|
|
|
|
// test: resolve('src/components'), // can customize your rules
|
|
|
|
minChunks: 3, // minimum common number
|
|
|
|
// minChunks: 3, // minimum common number
|
|
|
|
priority: 5, |
|
|
|
// priority: 5,
|
|
|
|
reuseExistingChunk: true |
|
|
|
// reuseExistingChunk: true
|
|
|
|
} |
|
|
|
// }
|
|
|
|
} |
|
|
|
// }
|
|
|
|
}); |
|
|
|
// });
|
|
|
|
config.optimization.runtimeChunk('single'); |
|
|
|
// config.optimization.runtimeChunk('single');
|
|
|
|
|
|
|
|
//
|
|
|
|
} |
|
|
|
// }
|
|
|
|
); |
|
|
|
// );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|