-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
151 lines (145 loc) · 3.19 KB
/
nuxt.config.js
File metadata and controls
151 lines (145 loc) · 3.19 KB
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
require('dotenv').config()
const {env} = process
;['PUBLIC_PATH', 'API_SERVER', 'NO_LOGIN', 'COOKIE_PATH'].forEach(key =>
console.log('%s\t: %s', key, env[key])
)
const isProd = env.MODE == 'prod'
const mockServer =
'https://easy-mock.com/mock/5c1b3895fe5907404e654045/femessage-mock/'
const mockServerOne = 'http://yapi.demo.qunar.com/mock/89555/el-data-table/'
// 不能以斜杠结尾
let apiServer = env.API_SERVER
// 必须以斜杠结尾
let publicPath = env.PUBLIC_PATH
const config = {
aliIconFont: '',
env: {
mock: {
'/deepexi-tenant': mockServer,
'/deepexi-permission': mockServer,
'/el-table': mockServerOne
},
dev: apiServer
? {
'/deepexi-tenant': apiServer,
'/deepexi-permission': apiServer
}
: {}
}
}
let axios = {
proxy: true
}
// 如果生产指定apiServer, 则使用绝对路径请求api
if (isProd && apiServer) {
axios = {
proxy: false,
baseURL: apiServer
}
}
module.exports = {
srcDir: 'src/',
mode: 'spa',
env: {
NO_LOGIN: env.NO_LOGIN,
COOKIE_PATH: env.COOKIE_PATH || '/'
},
proxy: config.env[env.MODE],
router: {
middleware: ['meta', 'auth'],
mode: 'hash'
},
/*
** Build configuration
*/
build: {
publicPath,
extractCSS: isProd,
babel: {
plugins: [
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: '~node_modules/@femessage/theme-deepexi/lib'
}
]
]
},
/*
** Run ESLint on save
*/
extend(config, {isDev}) {
if (isDev && process.client) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/
})
}
}
},
/*
** Headers of the page
*/
head: {
title: '',
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{'http-equiv': 'x-ua-compatible', content: 'IE=edge, chrome=1'},
{
hid: 'description',
name: 'description',
content: ''
}
],
link: [
{
rel: 'icon',
type: 'image/x-icon',
href:
'https://deepexi.oss-cn-shenzhen.aliyuncs.com/deepexi-services/favicon32x32.png'
},
{
// rel: 'stylesheet',
// type: 'text/css',
// href: config.aliIconFont
}
]
},
/*
** Customize the progress bar color
*/
loading: {
color: '#5D81F9'
},
/**
* Share variables, mixins, functions across all style files (no @import needed)
* @Link https://github.com/nuxt-community/style-resources-module/
*/
styleResources: {
less: '~assets/var.less'
},
css: [
{
src: '~assets/global.less',
lang: 'less'
}
],
plugins: [
{src: '~plugins/axios'},
{src: '~plugins/element'},
{src: '~plugins/icon-font'}
],
modules: [
// Doc: https://github.com/nuxt-community/style-resources-module
'@nuxtjs/style-resources',
// Doc: https://axios.nuxtjs.org/usage
'@nuxtjs/axios',
// Doc: https://github.com/nuxt-community/dotenv-module
['@nuxtjs/dotenv', {path: './'}]
],
axios
}