Compare commits
2 Commits
8b3527b4c6
...
c14328a4bb
| Author | SHA1 | Date | |
|---|---|---|---|
| c14328a4bb | |||
| f5e52b58e0 |
20
angular.json
20
angular.json
@@ -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"
|
||||
|
||||
4
src/environments/environment.development.ts
Normal file
4
src/environments/environment.development.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export const environment = {
|
||||
baseApi: 'http://localhost:8080/api',
|
||||
production: false
|
||||
};
|
||||
4
src/environments/environment.test.ts
Normal file
4
src/environments/environment.test.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export const environment = {
|
||||
baseApi: 'http://localhost:8080/api',
|
||||
production: false
|
||||
};
|
||||
4
src/environments/environment.ts
Normal file
4
src/environments/environment.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export const environment = {
|
||||
baseApi: 'https://api.melvanveen.nl/api',
|
||||
production: true
|
||||
};
|
||||
Reference in New Issue
Block a user