ngx-admin/docs/articles/server-deployment.md
2021-10-08 13:51:04 +03:00

668 B

Server Deployment

Though in the development Nebular app consists of a number of TypeScript, SASS, etc files, the built package is just a bunch HTML/JavaScript/CSS files. No other processing is needed to get them running in a browser. So to deploy the app you basically need two simple steps:

  • Build your app with npm run build:prod
  • Copy the output from the dist folder under a web-server of your choice.

More details on how to setup your web-server to better serve the application can be found on Angular Documentation website, under Server Configuration section.