forked from coracle/flotilla
37 lines
733 B
TypeScript
37 lines
733 B
TypeScript
import type {CapacitorConfig} from "@capacitor/cli"
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: "social.flotilla",
|
|
appName: "Flotilla",
|
|
webDir: "build",
|
|
android: {
|
|
adjustMarginsForEdgeToEdge: true,
|
|
},
|
|
plugins: {
|
|
CapacitorHttp: {
|
|
enabled: true,
|
|
},
|
|
SystemBars: {
|
|
insetsHandling: "enable",
|
|
},
|
|
SplashScreen: {
|
|
androidSplashResourceName: "splash",
|
|
},
|
|
Keyboard: {
|
|
style: "DARK",
|
|
resizeOnFullScreen: true,
|
|
},
|
|
Badge: {
|
|
persist: true,
|
|
autoClear: true,
|
|
},
|
|
},
|
|
server: {
|
|
// Use this for live reload https://capacitorjs.com/docs/guides/live-reload
|
|
// url: "http://192.168.1.17:1847",
|
|
// cleartext: true,
|
|
},
|
|
}
|
|
|
|
export default config
|