-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
46 lines (46 loc) · 1.17 KB
/
vue.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
module.exports = {
pages: {
'index': {
entry: './src/pages/Home/main.js',
template: 'index.html',
title: 'Home',
filename: 'index.html',
chunks: ['chunk-vendors', 'chunk-common', 'index']
},
'about': {
entry: './src/pages/About/main.js',
template: 'index.html',
title: 'About',
filename: 'about.html',
chunks: ['chunk-vendors', 'chunk-common', 'about']
},
'forum': {
entry: './src/pages/Forum/main.js',
template: 'index.html',
title: 'Forum',
filename: 'forum.html',
chunks: ['chunk-vendors', 'chunk-common', 'forum']
},
'media': {
entry: './src/pages/MediaTemplate/main.js',
template: 'index.html',
title: 'Media',
filename: 'media.html',
chunks: ['chunk-vendors', 'chunk-common', 'media']
},
'login': {
entry: './src/pages/Login/main.js',
template: 'index.html',
title: 'Login',
filename: 'login.html',
chunks: ['chunk-vendors', 'chunk-common', 'login']
},
/* 'index': {
entry: './src/pages/Title/main.js',
template: 'index.html',
title: 'Zenbu',
filename: 'index.html',
chunks: ['chunk-vendors', 'chunk-common', 'index']
}, */
}
}