mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 22:38:31 +02:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
module.exports = {
|
|
entry: {
|
|
background_scripts: "./background_scripts/background.js",
|
|
popup: "./popup/left-pad.js"
|
|
},
|
|
output: {
|
|
path: "addon",
|
|
filename: "[name]/index.js"
|
|
}
|
|
};
|