bbell
/
capacitor.config.ts
1import type { CapacitorConfig } from '@capacitor/cli'
2
3const config: CapacitorConfig = {
4 appId: 'cat.vt3e.bbell',
5 appName: 'bluebell',
6 webDir: 'dist',
7 android: {},
8 plugins: {
9 SystemBars: {
10 insetsHandling: 'css',
11 },
12 SafeArea: {},
13 },
14}
15
16export default config