Compare commits

...

2 Commits

Author SHA1 Message Date
c14328a4bb Merge remote-tracking branch 'origin/main'
Some checks failed
Docker Image CI / deploy (push) Has been cancelled
Docker Image CI / build-and-push (push) Has been cancelled
Increase Version / trigger-pipeline-b (push) Has been cancelled
Increase Version / bump-version (push) Has been cancelled
2025-03-13 21:52:00 +01:00
f5e52b58e0 staging voor tst en develop toegevoegd 2025-03-13 21:51:54 +01:00
4 changed files with 29 additions and 3 deletions

View File

@@ -53,8 +53,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kB",
"maximumError": "1MB"
"maximumWarning": "500MB",
"maximumError": "1000MB"
},
{
"type": "anyComponentStyle",
@@ -67,7 +67,21 @@
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
},
"test": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.test.ts"
}
]
}
},
"defaultConfiguration": "production"

View File

@@ -0,0 +1,4 @@
export const environment = {
baseApi: 'http://localhost:8080/api',
production: false
};

View File

@@ -0,0 +1,4 @@
export const environment = {
baseApi: 'http://localhost:8080/api',
production: false
};

View File

@@ -0,0 +1,4 @@
export const environment = {
baseApi: 'https://api.melvanveen.nl/api',
production: true
};