mirror of
https://github.com/checkly/headless-recorder.git
synced 2021-07-28 02:03:42 +03:00
33 lines
634 B
JavaScript
33 lines
634 B
JavaScript
module.exports = {
|
|
css: {
|
|
extract: false,
|
|
},
|
|
|
|
pages: {
|
|
popup: {
|
|
template: 'public/browser-extension.html',
|
|
entry: './src/popup/main.js',
|
|
title: 'Popup',
|
|
},
|
|
options: {
|
|
template: 'public/browser-extension.html',
|
|
entry: './src/options/main.js',
|
|
title: 'Options',
|
|
},
|
|
},
|
|
pluginOptions: {
|
|
browserExtension: {
|
|
componentOptions: {
|
|
background: {
|
|
entry: 'src/background/index.js',
|
|
},
|
|
contentScripts: {
|
|
entries: {
|
|
'content-script': ['src/content-scripts/index.js'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|