-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
32 lines (32 loc) · 1.15 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
module.exports = {
pages: {
popup: {
// entry for the page
entry: 'src/main-popup.js',
// the source template
template: 'public/index.html',
// output as dist/index.html
filename: 'popup.html',
// when using title option,
// template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Popup Page',
// chunks to include on this page, by default includes
// extracted common chunks and vendor chunks.
chunks: ['chunk-vendors', 'chunk-common', 'popup']
},
options: {
// entry for the page
entry: 'src/main-options.js',
// the source template
template: 'public/index.html',
// output as dist/index.html
filename: 'options.html',
// when using title option,
// template title tag needs to be <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Options Page',
// chunks to include on this page, by default includes
// extracted common chunks and vendor chunks.
chunks: ['chunk-vendors', 'chunk-common', 'options']
}
}
}