Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run the Dist Folder on Local Machine in Angular 6+?

I am building the application in Angular6+, now I ran the command ng build --prod which gave me a dist folder. How do I check or serve that folder on Localhost?

like image 522
Jignesh Mistry Avatar asked Jul 02 '18 04:07

Jignesh Mistry


1 Answers

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

Now you can visit http://localhost:8080 to view your application

like image 129
Anuradha Gunasekara Avatar answered Sep 17 '22 14:09

Anuradha Gunasekara