This repository was archived by the owner on Jul 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathnuxt.config.js
executable file
·147 lines (141 loc) · 2.9 KB
/
nuxt.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
require('dotenv').config()
;['PUBLIC_PATH', 'API_SERVER', 'COOKIE_PATH', 'NO_LOGIN'].forEach(key =>
console.log('%s\t: %s', key, process.env[key])
)
const env = process.env
const isProd = env.MODE == 'prod'
const mockServer =
'https://easy-mock.com/mock/5c1b3895fe5907404e654045/femessage-mock'
// 不能以斜杠结尾
let apiServer = process.env.API_SERVER
// 必须以斜杠结尾
let publicPath = process.env.PUBLIC_PATH
const config = {
aliIconFont: '',
env: {
mock: {
'/deepexi-tenant': mockServer,
'/deepexi-permission': mockServer
},
dev: {
'/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: process.env.NO_LOGIN,
COOKIE_PATH: process.env.COOKIE_PATH || '/'
},
proxy: config.env[env.MODE],
router: {
middleware: ['meta', 'auth'],
mode: 'hash'
},
/*
** Build configuration
*/
build: {
publicPath,
extractCSS: true,
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'
}
],
modules: [
'@nuxtjs/style-resources',
'@nuxtjs/axios',
['@nuxtjs/dotenv', {path: './'}]
],
axios
}