-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvue.config.js
28 lines (28 loc) · 1021 Bytes
/
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
module.exports = {
pages: {
pc: {
// page 的入口
entry: 'src/entry/pc.js',
// 模板来源
template: 'public/pc.html',
// 在 dist/index.html 的输出
filename: 'pc.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'pc端',
chunks: ['chunk-vendors', 'chunk-common', 'pc']
},
mobile: {
// page 的入口
entry: 'src/entry/mobile.js',
// 模板来源
template: 'public/mobile.html',
// 在 dist/index.html 的输出
filename: 'mobile.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: '移动端',
chunks: ['chunk-vendors', 'chunk-common', 'mobile']
},
},
}