Create angular standalone app by using command npx @angular/cli@latest new <APP_NAME> --standalone --routing --style=scss
- Generate environment file for production and devlopment by using command
ng g environments
- It will generate two file
environment.ts
andenvironment.development.ts
undersrc/environments/
- It will update
amgular.json
file for replacingenvironment.ts
withenvironment.development.ts
for dev version
- It will generate two file
- Update environments to below