I'm generating dist folder after ng build and my directory looks like
C:\Source\angular> ng build
cut and past the dist folder in another directory
C:\ReSource\angularbuild
After changing in 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 could i achieve it ? I want to run the dist folder which is placed in angularbuild folder from C:\Source\angular>
Let me know the right way to do it.

