Compare commits

..

No commits in common. "548dc83aa83207f0818629ff3feda7bbb06c5992" and "e7bd55a0b2fed3e4833db91958a9228c28f097ec" have entirely different histories.

10 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@
},
"content_scripts": [
{
"js": ["dist/main.js"],
"js": ["main.js"],
"matches": ["*://*.lenameyerlandrut-fanclub.de/*"]
}
],
@ -20,10 +20,5 @@
"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,4 +21,9 @@ module.exports = {
},
],
},
plugins: [
new CopyPlugin({
patterns: [{ from: ".", to: ".", context: "public" }],
}),
],
};