move stuff around

This commit is contained in:
Jörn-Michael Miehe 2023-12-30 01:43:11 +00:00
parent e7bd55a0b2
commit 99e5bd3cf4
10 changed files with 2 additions and 7 deletions

View file

@ -11,7 +11,7 @@
},
"content_scripts": [
{
"js": ["main.js"],
"js": ["dist/main.js"],
"matches": ["*://*.lenameyerlandrut-fanclub.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" }],
}),
],
};