add environments and configuration.service.ts for admin

This commit is contained in:
Roland Schneider
2025-11-19 09:12:27 +01:00
parent d5644b6044
commit 8ccb75ee4e
7 changed files with 62 additions and 2 deletions

View File

@@ -39,12 +39,24 @@
"maximumError": "8kB"
}
],
"outputHashing": "all"
"outputHashing": "all",
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.production.ts"
}
]
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"