Skip to content

Instantly share code, notes, and snippets.

@tkutcher
Created January 10, 2022 02:14
Show Gist options
  • Save tkutcher/62ec51690f7ecfc552e580c53000b997 to your computer and use it in GitHub Desktop.
Save tkutcher/62ec51690f7ecfc552e580c53000b997 to your computer and use it in GitHub Desktop.
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
]
},
"development": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.dev.ts"
}
]
},
"local": {
}
}
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "demo-angular-env-config:build:production"
},
"development": {
"browserTarget": "demo-angular-env-config:build:development"
},
"local": {
"browserTarget": "demo-angular-env-config:build:local"
}
},
"defaultConfiguration": "local"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment