I set up a new project using "ng new xxx", just add one line in index.html:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bbb</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="./CitrixHTML5SDK.js"></script>
</body>
</html>
Then put the JS file in the same dir as index.html
But when I run "ng server", the browser always show: 404
Does anyone know why? Thanks in advance.