After creating a new VueJS project using the Vue UI, I noticed that everything runs smoothly locally at http://localhost:8080/ with no errors. However, when I build the project and upload the files from the dist folder to my hosting package via FTP, I end up with a blank HTML page. The source code on the hosted version looks different from what's on my local host.
I've tested this on two different hosting packages and encountered the same issue. Any assistance would be greatly appreciated.
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge">
<meta name=viewport content="width=device-width,initial-scale=1">
<!--[if IE]><link rel="icon" href="/favicon.ico"><![endif]-->
<link href=/css/app.deed7380.css rel=preload as=style>
<link href=/js/app.1e49a2f5.js rel=preload as=script>
<link href=/js/chunk-vendors.0e42f062.js rel=preload as=script>
<link href=/css/app.deed7380.css rel=stylesheet>
<link rel=icon type=image/png sizes=32x32 href=/img/icons/favicon-32x32.png>
<link rel=icon type=image/png sizes=16x16 href=/img/icons/favicon-16x16.png>
<link rel=manifest href=/manifest.json>
<meta name=theme-color content=#4DBA87>
<meta name=apple-mobile-web-app-capable content=no>
<meta name=apple-mobile-web-app-status-bar-style content=default>
<meta name=apple-mobile-web-app-title content=pwap>
<link rel=apple-touch-icon href=/img/icons/apple-touch-icon-152x152.png>
<link rel=mask-icon href=/img/icons/safari-pinned-tab.svg color=#4DBA87>
<meta name=msapplication-TileImage content=/img/icons/msapplication-icon-144x144.png>
<meta name=msapplication-TileColor content=#000000>
</head>
<body>
<noscript><strong>We're sorry but pwap doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript>
<div class=content-wrapper>
<div id=app></div>
</div>
<script src=/js/chunk-vendors.0e42f062.js></script>
<script src=/js/app.1e49a2f5.js></script>
</body>
</html>