diff --git a/public/index.html b/public/index.html index c710234..b226984 100644 --- a/public/index.html +++ b/public/index.html @@ -1,7 +1,6 @@
- @@ -28,6 +27,14 @@ - + + diff --git a/public/js/bootstrap.js b/public/js/bootstrap.js deleted file mode 100644 index 4833fc6..0000000 --- a/public/js/bootstrap.js +++ /dev/null @@ -1,16 +0,0 @@ -(function(){ - var s = document.createElement("script"); - - if (location.host === "127.0.0.1:8080") { - //dev - s.setAttribute("src", "js/main.js"); - s.setAttribute("type", "module"); - - } else { - //prod - s.setAttribute("src", "js/bundle.js"); - - } - - document.body.appendChild(s); -})();