|
@@ -48,16 +48,20 @@ module.exports = {
|
|
|
// },
|
|
|
before: require('./mock/mock-server.js')
|
|
|
},
|
|
|
- configureWebpack: {
|
|
|
- // provide the app's title in webpack's name field, so that
|
|
|
- // it can be accessed in index.html to inject the correct title.
|
|
|
- name: name,
|
|
|
- resolve: {
|
|
|
- alias: {
|
|
|
- '@': resolve('src')
|
|
|
- }
|
|
|
- }
|
|
|
+ configureWebpack: (config) => {
|
|
|
+ // 取消console打印
|
|
|
+ config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true
|
|
|
},
|
|
|
+ // configureWebpack: {
|
|
|
+ // // provide the app's title in webpack's name field, so that
|
|
|
+ // // it can be accessed in index.html to inject the correct title.
|
|
|
+ // name: name,
|
|
|
+ // resolve: {
|
|
|
+ // alias: {
|
|
|
+ // '@': resolve('src')
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // },
|
|
|
chainWebpack (config) {
|
|
|
// it can improve the speed of the first screen, it is recommended to turn on preload
|
|
|
config.plugin('preload').tap(() => [
|