manifold/web/capacitor.config.ts
2022-06-27 14:39:10 -05:00

24 lines
519 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'markets.manifold',
appName: 'Manifold Markets',
webDir: 'out',
bundledWebRuntime: false,
// TODO: Do we need this?
// server: {
// allowNavigation: ['oneword-cf74a.firebaseapp.com', 'accounts.google.com'],
// },
plugins: {
CapacitorFirebaseAuth: {
providers: ['google.com'],
languageCode: 'en',
permissions: {
google: ['profile'],
},
},
},
}
export default config