The right index is showing up.The index will show - it is the supplementary resources that won't load if the base href is wrong.
The sources are only the indexIn the source of the index file should be script references to the bundled scripts - do you see those?
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>LoanApp1</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
<script type="text/javascript" src="inline.bundle.js"></script><script type="text/javascript" src="polyfills.bundle.js"></script><script type="text/javascript" src="styles.bundle.js"></script><script type="text/javascript" src="vendor.bundle.js"></script><script type="text/javascript" src="main.bundle.js"></script></body>
</html>
Are you saying, when you build it, then open the index.html in something like visual studio code, it has that line in it? Or, only in the browser?1. Clone repository
I am guessing you have a base href in there that is configured on your local machine to a path that is not available on the live site. Simply edit your index.html before deployment and make sure that reference points to the right place.