diff --git a/src/CNAME b/src/CNAME new file mode 100644 index 0000000..478cf48 --- /dev/null +++ b/src/CNAME @@ -0,0 +1 @@ +apexie.eu \ No newline at end of file diff --git a/webpack.config.js b/webpack.config.js index e8b7c9a..fe4c474 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -40,9 +40,10 @@ module.exports = { plugins: [ new CopyPlugin({ patterns: [ - { from: "src/index.html", to: "dist/index.html" }, - { from: "src/manifest.json", to: "dist/manifest.json" }, - { from: "src/assets", to: "dist/assets" } + { from: "src/index.html", to: "index.html" }, + { from: "src/manifest.json", to: "manifest.json" }, + { from: "src/CNAME", to: "CNAME" }, + { from: "src/assets", to: "assets" } ] }), new CleanWebpackPlugin()