-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
53 lines (47 loc) · 1.45 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
const path = require('path')
const resolve = dir => path.join(__dirname, dir)
const BASE_URL = process.env.NODE_ENV === 'production' ? '/' : '/'
module.exports = {
// Type: boolean/'error' | Default: true
lintOnSave: true,
// 部署应用包时的基本URL
// Type: string | Default: '/'
publicPath: BASE_URL,
// 生成的生产环境构建文件的目录
// Type: string | Default: 'dist'
outputDir: 'dist',
// 放置生成的静态资源的(相对于outputDir)的目录
// Type: string | Default: ''
assetsDir: '',
// 指定生成的index.html的输出路径(相对于outputDir);也可以是一个绝对路径
// Type: string | Default: 'index.html'
indexPath: 'index.html',
// 静态资源文件名是否带 hash
// Type: boolean | Default: true
filenameHashing: true,
chainWebpack: config => {
config.resolve.alias
.set('@', resolve('src'))
.set('_c', resolve('src/components'))
.set('_a', resolve('src/api'))
.set('_v', resolve('src/views'))
// 项目解析
if (process.env.use_analyzer) {
config
.plugin('webpack-bundle-analyzer')
.use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin)
}
},
// 打包时不生成 .map 文件
// Type: boolean | Default: true
productionSourceMap: false,
// 开发环境配置代理
devServer: {
// port: '',
// host: '',
// proxy: {
// target: '',
// changeOrigin: true
// }
}
}