-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
251 lines (230 loc) · 6.1 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
'use strict'
const path = require('path')
const WebpackBar = require('webpackbar')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
/*
* 含义:部署应用包时的基本URL
* Type: string
* Default: '/'
*/
publicPath:
process.env.NODE_ENV === 'production' ? '/production-sub-path/' : '/',
/*
* 含义:生产环境打包输出目录
* Type: string
* Default: 'dist'
*/
outputDir: 'dist',
/*
* 含义:放置生成的静态资源(js、css、img、fonts)的(相对于outputDir)目录
* Type: string
* Default: ''
*/
assetsDir: '',
/*
* 含义:指定生成的 index.html 的输出路径 (相对于 outputDir)
* Type: string
* Default: 'index.html'
*/
indexPath: 'index.html',
/*
* 含义:生成的静态资源在它们的文件名中包含了 hash 以便更好的控制缓存
* Type: boolean
* Default: true
*/
filenameHashing: true,
/*
* 含义:在multi-page模式下构建应用
* Type: Object
* Default: undefined
*/
pages: undefined,
/*
* 含义:是否在开发环境下通过 eslint-loader 在每次保存时 lint 代码
* Type: boolean | 'error'
* Default: true
*/
lintOnSave: process.env.NODE_ENV !== 'production',
/*
* 含义:是否使用包含运行时编译器的 Vue 构建版本
* Type: boolean
* Default: false
*/
runtimeCompiler: false,
/*
* 含义:默认情况下 babel-loader 会忽略所有 node_modules 中的文件。
如果你想要通过 Babel 显式转译一个依赖,可以在这个选项中列出来
* Type: Array<string | RegExp>
* Default: []
*/
transpileDependencies: [],
/*
* 含义:如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
* Type: boolean
* Default: true
*/
productionSourceMap: process.env.NODE_ENV !== 'production',
/*
* 含义:设置生成的 HTML 中 <link rel="stylesheet"> 和 <script> 标签的 crossorigin 属性。
* Type: string
* Default: undefined
*/
crossorigin: undefined,
/*
* 含义:在生成的 HTML 中的 <link rel="stylesheet"> 和 <script> 标签上启用 Subresource Integrity
* Type: boolean
* Default: false
*/
integrity: false,
/*
* 含义:配置webpack
* Type: Object | Function
*
*/
configureWebpack: (config) => {
/* 添加分析工具*/
if (process.env.NODE_ENV === 'production') {
// 为生产环境修改配置
if (process.env.npm_config_report) {
config
.plugin('webpack-bundle-analyzer')
.usr(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
.end()
config.plugin.delete('prefetch')
}
} else {
// 为开发环境修改配置...
}
return {
plugins: [
// 定制:构建进度条
new WebpackBar({
name: `vue-bum-admin的项目`,
// color: '#f40',
profile: true,
start(context) {
// Called when (re)compile is started
},
change(context) {
// Called when a file changed on watch mode
},
update(context) {
// Called after each progress update
},
done(context) {
// Called when compile finished
},
progress(context) {
// Called when build progress updated
},
allDone(context) {
// Called when _all_ compiles finished
},
beforeAllDone(context) {},
afterAllDone(context) {},
}),
],
}
},
/*
* 含义:配置webpack(链式操作)。是一个函数,会接收一个基于 webpack-chain 的 ChainableConfig 实例。允许对内部的 webpack 配置进行更细粒度的修改。
* Type: Function
*/
chainWebpack: (config) => {
// set svg-sprite-loader
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]',
})
.end()
// 去除模拟
if (
process.env.NODE_ENV === 'production' &&
process.env.MIRAGE_ENABLED !== 'true'
) {
config.module
.rule('exclude-mirage')
.test(/node_modules\/miragejs\//)
.use('null-loader')
.loader('null-loader')
}
// 分析模块
if (process.env.use_analyzer) {
config
.plugin('webpack-bundle-analyzer')
.use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
}
},
/* css相关 */
css: {
/*
* 含义:默认情况下,只有 *.module.[ext] 结尾的文件才会被视作 CSS Modules 模块。
设置为 true 后你就可以去掉文件名中的 .module 并将所有的 *.(css|scss|sass|less|styl(us)?) 文件视为 CSS Modules 模块。
* 启用 CSS modules for all css / pre-processor files.
* Type: boolean
* Default: false
*/
requireModuleExtension: true,
/*
* 含义:是否将组件中的 CSS 提取至一个独立的 CSS 文件中 (而不是动态注入到 JavaScript 中的 inline 代码)。
提取 CSS 在开发环境模式下是默认不开启的,因为它和 CSS 热重载不兼容。
* Type: boolean | Object
* Default: 生产环境下是 true,开发环境下是 false
* 是否使用css分离插件ExtractTextPlugin
*/
extract: process.env.NODE_ENV === 'production',
/*
* 含义:是否为 CSS 开启 source map。设置为 true 之后可能会影响构建的性能。
* Type: boolean
* Default: false
*/
sourceMap: false,
/*
* 含义:向 CSS 相关的 loader 传递选项,即css预设器配置项
* Type: Object
* Default: {}
*/
loaderOptions: {
css: {
// 这里的选项会传递给 css-loader
},
postcss: {
// 这里的选项会传递给 postcss-loader
},
},
},
/*
* 含义:webpack-dev-server选项配置
* Type:Object
*/
devServer: {
/*
* 含义:前端应用和后端 API 服务器没有运行在同一个主机上,需要在开发环境下将 API 请求代理到 API 服务器
* Type: string | Object
*/
// proxy: 'http://localhost:4000',
proxy: {
'/api': {
target: '<url>',
ws: true,
changeOrigin: true,
},
'/foo': {
target: '<other_url>',
},
},
},
}