preparation for prod
This commit is contained in:
parent
2ebe6454ec
commit
388aac5a76
|
|
@ -71,6 +71,17 @@
|
||||||
"optimization": false,
|
"optimization": false,
|
||||||
"extractLicenses": false,
|
"extractLicenses": false,
|
||||||
"sourceMap": true
|
"sourceMap": true
|
||||||
|
},
|
||||||
|
"prod": {
|
||||||
|
"fileReplacements": [
|
||||||
|
{
|
||||||
|
"replace": "src/environments/environment.ts",
|
||||||
|
"with": "src/environments/environment.prod.ts"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"optimization": true,
|
||||||
|
"extractLicenses": false,
|
||||||
|
"sourceMap": true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"defaultConfiguration": "production"
|
"defaultConfiguration": "production"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
import { environment_base } from './environment.base';
|
||||||
|
|
||||||
|
export const environment = environment_base;
|
||||||
|
|
||||||
|
environment.apiBaseUrl = 'https://api.bizmatch.net';
|
||||||
|
environment.mailinfoUrl = 'https://www.bizmatch.net';
|
||||||
|
environment.imageBaseUrl = 'https://www.bizmatch.net';
|
||||||
Loading…
Reference in New Issue