mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
14 lines
299 B
JavaScript
14 lines
299 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"
|
|
},
|
|
mode: 'none',
|
|
};
|