Skip to content

Instantly share code, notes, and snippets.

@TopekoX
Last active January 27, 2025 01:38
Show Gist options
  • Save TopekoX/57d1b1f629a33e5bc5a75d82e9178ed6 to your computer and use it in GitHub Desktop.
Save TopekoX/57d1b1f629a33e5bc5a75d82e9178ed6 to your computer and use it in GitHub Desktop.
Angular build and run locally

Using ng

  • Build Angular
ng build

or using profile

ng build --configuration=production

ng build -c production
  • install angular-http-server
npm install angular-http-server -g
  • run in dist project local root directory
angular-http-server

Using npm

  • install http-server
npm install --global http-server
  • build
npm run build
  • run in local root directory
http-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment