commit a6df3129aec69c4647a33241ca96aa9a8f281a28 parent d6f95790f1f9cc2e280e8b74581b7501cdc131f3 Author: Yohanes Bandung <bandungpenting@gmail.com> Date: Tue, 24 Mar 2020 08:20:18 +0700 refactor(core): remove error from trying to access bundle.js Diffstat:
| M | public/index.html | | | 1 | - |
| M | webpack.config.js | | | 1 | + |
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/public/index.html b/public/index.html @@ -65,6 +65,5 @@ </center> </div> </noscript> - <script src="../dist/bundle.js"></script> </body> </html> diff --git a/webpack.config.js b/webpack.config.js @@ -14,6 +14,7 @@ module.exports = { }, plugins: [ new HtmlWebpackPlugin({ + title: 'ybbond.dev', template: 'public/index.html', favicon: 'public/favicon.ico', }),