forked from uhonliu/open-admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js.example
48 lines (45 loc) · 1.4 KB
/
vue.config.js.example
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
const path = require('path')
const config = require('./src/config')
const resolve = dir => {
return path.join(__dirname, dir)
}
let BASE_URL = ''
switch (process.env.NODE_ENV) {
case 'development':
BASE_URL = config.publicPath.dev // 这里是本地的请求url
break
case 'production':
BASE_URL = config.publicPath.pro // 生产环境url
break
}
module.exports = {
// 项目部署基础
// 默认情况下,我们假设你的应用将被部署在域的根目录下,
// 例如:https://www.my-app.com/
// 默认:'/'
// 如果您的应用程序部署在子路径中,则需要在这指定子路径
// 例如:https://www.foobar.com/my-app/
// 需要将它改为'/my-app/'
publicPath: BASE_URL,
assetsDir: './assets',
// 如果你不需要使用eslint,把lintOnSave设为false即可
lintOnSave: true,
chainWebpack: config => {
config.resolve.alias
.set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
.set('_c', resolve('src/components'))
},
css: {
loaderOptions: {
less: {
javascriptEnabled: true
}
}
},
// 打包时不生成.map文件
productionSourceMap: false
// 这里写你调用接口的基础路径,来解决跨域,如果设置了代理,那你本地开发环境的axios的baseUrl要写为 '' ,即空字符串
// devServer: {
// proxy: 'localhost:3000'
// }
}