mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
21 lines
844 B
TypeScript
21 lines
844 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Akveo. All Rights Reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*/
|
|
// The file contents for the current environment will overwrite these during build.
|
|
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
|
|
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
|
|
// The list of which env maps to which file can be found in `.angular-cli.json`.
|
|
|
|
export const environment = {
|
|
production: false,
|
|
firebase: {
|
|
apiKey: "AIzaSyCPFCMSkeRtJJhiu_yWLIggkRpFL_OM88M",
|
|
authDomain: "test-app-133d0.firebaseapp.com",
|
|
projectId: "test-app-133d0",
|
|
storageBucket: "test-app-133d0.appspot.com",
|
|
messagingSenderId: "166874967658",
|
|
appId: "1:166874967658:web:53ef3ec2bb8456d9e2a413"
|
|
}
|
|
};
|