manifold/web/capacitor.config.ts

24 lines
538 B
TypeScript
Raw Permalink Normal View History

2022-06-27 16:51:28 +00:00
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'],
},
2022-06-27 19:39:10 +00:00
plugins: {
CapacitorFirebaseAuth: {
providers: ['google.com'],
languageCode: 'en',
permissions: {
google: ['profile'],
},
},
},
2022-06-27 16:51:28 +00:00
}
export default config