mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
* Notes on AMO reviews, update to webpack 2 and use better reset style for panel footer button * Link to webpack-webext-plugin in live-dev section
13 lines
280 B
JavaScript
13 lines
280 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
entry: {
|
|
background_scripts: "./background_scripts/background.js",
|
|
popup: "./popup/left-pad.js"
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, "addon"),
|
|
filename: "[name]/index.js"
|
|
}
|
|
};
|