Compare commits

...

2 commits

Author SHA1 Message Date
548dc83aa8 firefox compat 2023-12-30 01:43:21 +00:00
99e5bd3cf4 move stuff around 2023-12-30 01:43:11 +00:00
10 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@
},
"content_scripts": [
{
"js": ["main.js"],
"js": ["dist/main.js"],
"matches": ["*://*.lenameyerlandrut-fanclub.de/*"]
}
],
@ -20,5 +20,10 @@
"resources": ["img/sb_button.png"],
"matches": ["*://*.lenameyerlandrut-fanclub.de/*"]
}
]
],
"browser_specific_settings": {
"gecko": {
"id": "lmlfc-bttv@lenaisten.de"
}
}
}

View file

@ -1,5 +1,5 @@
const path = require("path");
const CopyPlugin = require("copy-webpack-plugin");
module.exports = {
mode: "production",
entry: {
@ -21,9 +21,4 @@ module.exports = {
},
],
},
plugins: [
new CopyPlugin({
patterns: [{ from: ".", to: ".", context: "public" }],
}),
],
};