Ver a proveniência

build: environments

master
Florian Eisenmenger há 1 ano
ascendente
cometimento
c9ccaf490e
2 ficheiros alterados com 14 adições e 3 eliminações
  1. +9
    -3
      matsen-tool/angular.json
  2. +5
    -0
      matsen-tool/src/environments/environment.development.ts

+ 9
- 3
matsen-tool/angular.json Ver ficheiro

@@ -51,8 +51,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "1mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
@@ -65,7 +65,13 @@
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
"sourceMap": true,
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.development.ts"
}
]
}
},
"defaultConfiguration": "production"


+ 5
- 0
matsen-tool/src/environments/environment.development.ts Ver ficheiro

@@ -0,0 +1,5 @@
export const environment = {
production: false,
basePath: 'https://matsen-api.spawntree.de',
apiUrl: 'https://matsen-api.spawntree.de/api'
};

Carregando…
Cancelar
Guardar