3987baa11b
* Improve typing of client CORS helper * Take node-fetch as a dependency * Add explicit Firebase region into config * Add new Vercel proxy API routes that talk to backend * Call Vercel proxy routes from `api-call` module * Tweak import to try to get Vercel happy * Tidy up a tiny bit
16 lines
489 B
TypeScript
16 lines
489 B
TypeScript
import { EnvConfig, PROD_CONFIG } from './prod'
|
|
|
|
export const DEV_CONFIG: EnvConfig = {
|
|
...PROD_CONFIG,
|
|
firebaseConfig: {
|
|
apiKey: 'AIzaSyBoq3rzUa8Ekyo3ZaTnlycQYPRCA26VpOw',
|
|
authDomain: 'dev-mantic-markets.firebaseapp.com',
|
|
projectId: 'dev-mantic-markets',
|
|
region: 'us-central1',
|
|
storageBucket: 'dev-mantic-markets.appspot.com',
|
|
messagingSenderId: '134303100058',
|
|
appId: '1:134303100058:web:27f9ea8b83347251f80323',
|
|
measurementId: 'G-YJC9E37P37',
|
|
},
|
|
}
|