-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnuxt.config.js
executable file
·212 lines (199 loc) · 4.26 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
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
/*
* @Description: nuxt 配置文件
* @Author: barret
* @Date: 2019-08-10 07:57:24
* @LastEditTime: 2019-08-22 21:08:07
* @LastEditors: barret
*/
require('dotenv').config();
const proxyConfig = require('./config/proxy.config');
const path = require('path');
function resolve(dir) {
return path.join(__dirname, dir);
}
['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 publicPath = env.PUBLIC_PATH || './';
// 不能以斜杠结尾
const apiServer = process.env.API_SERVER;
// 必须以斜杠结尾
const config = {
aliIconFont: '',
env: proxyConfig,
};
let axios = {
proxy: true,
};
// 如果生产指定apiServer, 则使用绝对路径请求api
if (isProd && apiServer) {
axios = {
proxy: false,
baseURL: apiServer,
};
}
const nuxtConfig = {
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: {
[isProd ? 'publicPath' : '']: publicPath,
extractCSS: true,
babel: {
plugins: [
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: '~node_modules/@femessage/theme-deepexi/lib',
},
],
],
},
/*
** Run ESLint on save
*/
extend(config, {isDev, isClient}) {
config.module.rules = config.module.rules.filter(item => !item.test.test('.svg'));
config.module.rules.push({
test: /\.svg$/,
loader: 'svg-sprite-loader',
include: [resolve('src/icons')],
options: {
symbolId: 'icon-[name]',
},
});
config.module.rules.push({
test: /\.(png|jpe?g|gif|svg)$/,
exclude: [resolve('src/icons')],
use: [
{
loader: 'url-loader',
options: {
limit: 10000, // 1K limit
name: 'img/[name].[hash:8].[ext]',
},
},
{
loader: 'image-webpack-loader',
options: {
// bypassOnDebug: true, // [email protected]
disable: true, // [email protected] and newer
},
},
],
});
// Run ESLint on save
if (isDev && isClient) {
config.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules)/,
options: {
cache: true,
fix: true,
quiet: true,
},
});
}
isProd && (config.output.publicPath = publicPath);
},
},
/*
** Headers of the page
*/
head: {
title: 'SPaaS Console',
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: 'SPaaS Console',
},
],
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: 'https://deepexi.oss-cn-shenzhen.aliyuncs.com/deepexi-services/favicon32x32.png',
},
],
},
/*
** 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: '~styles/var.less',
},
css: [
{
src: '~styles/global.less',
lang: 'less',
},
],
plugins: [
{
src: '~/plugins/axios-port.js',
},
{
src: '~/plugins/axios',
},
{
src: '~/plugins/element',
},
{
src: '~/plugins/router',
},
'~/plugins/globalPlugin',
],
modules: [
'@nuxtjs/style-resources',
'@nuxtjs/axios',
[
'@nuxtjs/dotenv',
{
path: './',
},
],
[
'@nuxtjs/pwa',
{
icon: false,
},
],
],
axios,
};
module.exports = nuxtConfig;