0๐
โ
Iโve solved it by fixing paths in the index.html file by adding a slash before the path to indicate to load files from the root URL:
Before:
<script type="module" src="src/main.ts"></script>
After:
<script type="module" src="/src/main.ts"></script>
The same goes for other paths in index.html.
Source:stackexchange.com