-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathvue.config.js
executable file
·119 lines (118 loc) · 3.14 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
const path = require('path')
const WebpackBar = require('webpackbar')
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
// 是否开启 eslint 自动校验
lintOnSave: true,
// 不输出 map 文件,以加速生产环境构建
productionSourceMap: false,
devServer: {
devMiddleware: {
publicPath: '/',
},
hot: true,
port: '9999',
client: {
overlay: {
warnings: false,
errors: true
}
}
// 反向代理
// proxy: {
// '/mock-api/': {
// target: 'https://vue-typescript-admin-mock-server-armour.vercel.app/mock-api',
// ws: true,
// pathRewrite: {
// '^/mock-api/': ''
// },
// changeOrigin: true,
// secure: false
// }
// }
},
configureWebpack: () => {
const config = {
// webpack 配置的项目名称, 可以在 index.html 中被访问,用来注入页面标题
name: 'v3-admin',
resolve: {
fallback: {
// 默认情况下,webpack5 不再包含用于 node.js 模块的 polyfills,所以引入 path-browserify
path: require.resolve('path-browserify')
}
}
};
if (process.env.NODE_ENV === 'production') {
config.plugins = [
new WebpackBar({
// webpack 配置的项目名称
name: 'v3-admin'
})
]
// 生产环境清除 console.log
config.optimization = {
minimizer: [
new TerserPlugin({
terserOptions: {
mangle: true,
compress: {
warnings: false,
drop_console: false,
drop_debugger: false,
// 清除 console.log
pure_funcs: ['console.log']
},
output: {
// 删除注释
comments: false
}
}
})
]
}
}
return config
},
chainWebpack: config => {
// 当有很多页面时,它会导致太多毫无意义的请求
config.plugins.delete('prefetch')
// 开发环境 sourcemap 不包含列信息
config.when(process.env.NODE_ENV === 'development',
config => config.devtool('cheap-source-map')
)
// svg
const dir = path.resolve(__dirname, 'src/icons/svg')
config.module
.rule('svg-sprite')
.test(/\.svg$/)
.include
.add(dir)
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({ extract: false })
.end()
config.plugin('svg-sprite')
.use(require('svg-sprite-loader/plugin')),
[{ pluginSprite: true }]
config.module
.rule('svg')
.exclude
.add(dir)
// 将运行代码单独生成文件
if (process.env.NODE_ENV !== 'development') {
config.cache({
// 将缓存类型设置为 filesystem, 默认是 memory
type: 'filesystem',
buildDependencies: {
// 更改配置文件时重新缓存
config: [__filename]
}
})
config.optimization.runtimeChunk('single')
}
}
}