Socialify

Folder ..

Viewing env.ts
25 lines (23 loc) • 683.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { dev } from '$app/environment';

type Config = {
    firebase: {
        apiKey: string;
        authDomain: string;
        projectId: string;
        storageBucket: string;
        messagingSenderId: string;
        appId: string;
    };
    mode: 'dev' | 'prod';
};

export const pagodaConfig: Config = {
    firebase: {
        apiKey: "AIzaSyBj6M-kpQq-8fDHFmjsvqgCcKE9gMZl2gg",
        authDomain: "neocitiespagoda.firebaseapp.com",
        projectId: "neocitiespagoda",
        storageBucket: "neocitiespagoda.appspot.com",
        messagingSenderId: "374918509771",
        appId: "1:374918509771:web:8a73535fecc87dc12a174e",
    },
    mode: dev ? 'dev' : 'prod',
};