I create a dist folder after ng build and my directory looks like
C:\Source\angular> ng build

cut and skip the dist folder in another directory
C:\ReSource\angularbuild

After changing Index.html to
<base href="./ReSource/angularbuild/dist">
Then
C:\Source\angular> ng serve
Getting inline.bundle.js, main.bundle.js, styles.bundle.js, vendor.bundle.js, main.bundle.js 404 not found errors
How can i achieve this? I want to run the dist folder, which is placed in the angularbuild folder withC:\Source\angular>
Let me know the right way to do this.
source
share