How to run the Dist Folder on Local Machine in Angular
You can do that using http-server package.
First install the package globally
npm install http-server -g
Then inside your project directory(in the terminal) just run
http-server dist/
And if you are using Angular 6+ or above (Working with Angular 10), You have to run
http-server dist/your-project-name
Tagged: