I am new to Angular 2. I am confused with how Angular 2 works in production environment.
What are the prerequisites for running Angular 2 application in pr
it's very simple to upload app on production. steps:
if your app has router then don't forget to use {useHash: true} for prevent the error can't load the page. like:
RouterModule.forRoot(routes, { useHash: true })
type npm build in your project root path.