-
Notifications
You must be signed in to change notification settings - Fork 5
/
nuxt.config.js
72 lines (70 loc) · 1.43 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
const package = require('./package')
module.exports = {
srcDir: 'client/',
buildDir: 'dist/client/',
cachettl: 60 * 60 * 24,
// loading: '~components/loading.vue',
generalfile:false,
proxyUrl: {
dev: "",
test: "",
production: ""
},
mode: 'universal',
head: {
title: "外销商城",
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no' },
{ hid: 'description', name: 'description', content: package.description }
],
link: [
{ rel: 'icon', type: 'img/x-icon', href: '/favicon.ico' },
],
script: [
{ src: '/js/flexible.js', type: 'text/javascript'},
]
},
loading: {
color: '#fff',
},
css: [
'~/assets/common.css',
'~/assets/reset-vant-theme.css',
],
plugins: [
'../config/plugins/vant-ui.js',
'../config/plugins/axios',
],
render:{
static:{
maxAge:31536001
}
},
modules: [
'../config/modules/typescript',
'@nuxtjs/axios',
'@nuxtjs/style-resources'
],
styleResources:{
sass: './assets/style.rule.scss',
},
router: {
middleware: ['authlogin'],
},
buildDir: 'dist',
build: {
extractCSS: true,
postcss: {
plugins: {
'postcss-pxtorem': {
rootValue: 37.5,
propList: ['*']
}
},
preset: {
autoprefixer: true
}
}
}
}