How to run the Dist Folder on Local Machine in Angular 6?
问题 I am building the application in Angular, now I have run the command ng build --prod which gave me a dist folder. Now how to check or serve that folder on Localhost ? 回答1: You can do that using http-server. 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 your are using angular 6.x.x, You have to run http-server dist/your-project-name Now you can visit http://localhost:8080 to view your