From 8fb471025e7ef11490432a342f1694624b1f39ee Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Wed, 22 Jul 2020 18:52:51 -0600 Subject: [PATCH] changed project structure for hosting --- dist/{html => }/index.html | 4 ++-- dist/{ => js}/bundle.js | 0 webpack.config.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename dist/{html => }/index.html (98%) rename dist/{ => js}/bundle.js (100%) diff --git a/dist/html/index.html b/dist/index.html similarity index 98% rename from dist/html/index.html rename to dist/index.html index f2f03a9..594b982 100644 --- a/dist/html/index.html +++ b/dist/index.html @@ -3,12 +3,12 @@ Evolution Simulator - + - +
diff --git a/dist/bundle.js b/dist/js/bundle.js similarity index 100% rename from dist/bundle.js rename to dist/js/bundle.js diff --git a/webpack.config.js b/webpack.config.js index f1ded1b..62523fd 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -4,7 +4,7 @@ module.exports = { entry: './src/index.js', output: { filename: 'bundle.js', - path: path.resolve(__dirname, 'dist'), + path: path.resolve(__dirname, 'dist/js/'), }, externals: { jquery: 'jQuery'