build: add environments

This commit is contained in:
2025-11-08 12:54:32 -03:00
parent da6e9d38a9
commit a2316fcace
3 changed files with 13 additions and 1 deletions

View File

@@ -52,7 +52,13 @@
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"

View File

@@ -0,0 +1,3 @@
export const environment = {
apiUrl: 'http://localhost:4444'
};

View File

@@ -0,0 +1,3 @@
export const environment = {
apiUrl: 'http://localhost:333'
};