| 12345678910111213141516171819202122232425 |
- import { CapacitorConfig } from '@capacitor/cli';
- const config: CapacitorConfig = {
- appId: 'com.logseq.app',
- appName: 'Logseq',
- bundledWebRuntime: false,
- webDir: 'public',
- plugins: {
- SplashScreen: {
- launchShowDuration: 3000,
- launchAutoHide: false,
- androidScaleType: "CENTER_CROP",
- splashImmersive: true,
- backgroundColor: "#00405b"
- },
- }
- // do not commit this into source control
- // source: https://capacitorjs.com/docs/guides/live-reload
- // , server: {
- // url: process.env.LOGSEQ_APP_SERVER_URL,
- // cleartext: true
- // }
- };
- export = config;
|