The file is unused

The file is replaced with the propper app.config.ts file in the same folder
This commit is contained in:
Konrad Koch
2018-05-21 08:44:08 +02:00
committed by GitHub
parent a8c2b63e27
commit 05c9e399a7

View File

@@ -1,23 +0,0 @@
import { CONF_LOCAL } from '../environments/environment.local';
import { CONF_DEV } from '../environments/environment.dev';
import { CONF_PROD } from '../environments/environment.prod';
const ENV = 'PROFILE';
const LOCAL: String = 'local';
const DEV: String = 'dev';
const PROD: String = 'prod';
let conf: any;
console.log('Env', ENV);
if (ENV === PROD) {
conf = CONF_PROD;
} else if (ENV === DEV) {
conf = CONF_DEV;
} else {
conf = CONF_LOCAL;
}
export const AppConfig = Object.assign({}, conf);