You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
566 B
19 lines
566 B
module.exports = { |
|
publicPath: '', |
|
pages: { |
|
popup: { |
|
entry: 'src/pages/popup/main.js', |
|
template: 'public/index.html', |
|
filename: 'popup.html', |
|
title: '书签同步助手', |
|
chunks: ['chunk-vendors', 'chunk-common', 'popup'] // 'chunk-vendors', 'chunk-common' 是公用资源文件 |
|
}, |
|
options: { |
|
entry: 'src/pages/options/main.js', |
|
template: 'public/index.html', |
|
filename: 'options.html', |
|
title: '书签同步助手配置页', |
|
chunks: ['chunk-vendors', 'chunk-common', 'options'] |
|
} |
|
} |
|
}
|
|
|