Files
nms/webpack.config.js
2025-11-10 16:28:20 -05:00

14 lines
239 B
JavaScript

const path = require("path")
module.exports = {
entry: {
background: "./background/background.js",
popup: "./popup/popup.js"
},
output: {
path: path.resolve(__dirname, "addon"),
filename: "[name]/[name].js"
},
mode: "none"
}