What to do with the dist assembly

So, I finished a very small angular2 project and built it using angular-cli using the "ng build -prod" command.

I get the "dist" folder. But what should I do with this dist folder to start it? Publish it to the server?

Sincerely.

+4
source share
1 answer

Yes! Upload the contents of the dist folder to your web server to host it live. This step, when you take a finished, built project and send it to the server, is often called a "deployment".

, , , , (, Amazon S3 AWS, firebase deploy firebase- Angular CLI gh- Github ng github-pages:deploy)

+4

Source: https://habr.com/ru/post/1666934/


All Articles