Newer
Older

Valentin Rigal
committed
module.exports = {
lintOnSave: 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: {
components: {
contentScripts: true,
},
componentOptions: {
contentScripts: {
entries: {
content: "src/content/content.js",
},
},
},
},
},
};