Alright, some little changes

This commit is contained in:
ItzLightyHD 2022-06-09 12:19:25 +02:00
parent 128bf08aaa
commit bb0f6f59a2
2 changed files with 5 additions and 3 deletions

1
src/CNAME Normal file
View File

@ -0,0 +1 @@
apexie.eu

View File

@ -40,9 +40,10 @@ module.exports = {
plugins: [ plugins: [
new CopyPlugin({ new CopyPlugin({
patterns: [ patterns: [
{ from: "src/index.html", to: "dist/index.html" }, { from: "src/index.html", to: "index.html" },
{ from: "src/manifest.json", to: "dist/manifest.json" }, { from: "src/manifest.json", to: "manifest.json" },
{ from: "src/assets", to: "dist/assets" } { from: "src/CNAME", to: "CNAME" },
{ from: "src/assets", to: "assets" }
] ]
}), }),
new CleanWebpackPlugin() new CleanWebpackPlugin()