manifold/web/capacitor.config.ts
2022-06-27 14:55:01 -05:00

24 lines
538 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'markets.manifold',
appName: 'Manifold Markets',
webDir: 'out',
bundledWebRuntime: false,
server: {
// Allow these sites to be loaded from the webview
allowNavigation: ['mantic-markets.firebaseapp.com', 'accounts.google.com'],
},
plugins: {
CapacitorFirebaseAuth: {
providers: ['google.com'],
languageCode: 'en',
permissions: {
google: ['profile'],
},
},
},
}
export default config