-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
110 lines (110 loc) · 2.68 KB
/
Copy pathnuxt.config.js
File metadata and controls
110 lines (110 loc) · 2.68 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
module.exports = {
/*
** Headers of the page
*/
router: {
extendRoutes(routes, resolve) {
routes.push(
{
name: 'index',
path: '/',
component: resolve(__dirname, 'pages/index')
},
{
name: 'video',
path: '/video',
component: resolve(__dirname, 'pages/video')
},
{
name: 'search',
path: '/search',
component: resolve(__dirname, 'pages/search')
},
{
name: 'monitor',
path: '/monitor',
component: resolve(__dirname, 'pages/monitor')
},
{
name: 'help',
path: '/category',
component: resolve(__dirname, 'pages/help'),
children: [
{
path: 'category/:categoryId',
name: 'category',
component: resolve(__dirname, 'pages/category/_id/index.vue')
},
{
path: 'category/:categoryId/article/:articleId',
name: 'category',
component: resolve(__dirname, 'pages/article/_id/index.vue')
},
]
},
)
}
},
head: {
title: 'EasyAPI帮助中心专栏',
meta: [
{charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{hid: 'description', name: 'description', content: 'EasyAPI帮助中心专栏'},
{hid: 'description', name: 'keyswords', content: 'EasyAPI帮助中心专栏'}
],
link: [
{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}
]
},
css: ['@/assets/scss/variables.scss', '@/assets/scss/element-variables.scss'],
plugins: [
'@/plugins/axios',
{src: '~plugins/element-ui', ssr: true},
{src: '~plugins/nuxt-video-player-plugin.js', ssr: false}
],
modules: ['@nuxtjs/axios'],
buildModules: ['@nuxtjs/tailwindcss'],
tailwindcss: {
cssPath: '@/assets/css/tailwind.css',
configPath: 'tailwind.config.js',
exposeConfig: false,
config: {}
},
axios: {},
/*
** Customize the progress bar color
*/
loading: {
color: '$--color-primary',
failedColor: '$--color-primary'
},
/*
** Build configuration
*/
build: {
transpile: [/^element-ui/],
extend(config, ctx) {
},
maxChunkSize: 300000, // 单个包最大尺寸
extractCSS: true, // 单独提取CSS
babel: {
plugins: [
[
'component',
{
libraryName: 'element-ui',
styleLibraryName: 'theme-chalk'
}
]
]
}
},
server: {
port: 3000
},
env: {
baseUrl: 'https://api.easyapi.com',
accountUrl: 'https://account-api.easyapi.com'
}
}