logseq/capacitor.config.ts

33 lines
772 B
TypeScript
Raw Normal View History

import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
2021-09-30 04:42:03 +00:00
appId: 'com.logseq.app',
appName: 'Logseq',
bundledWebRuntime: false,
webDir: 'public',
plugins: {
SplashScreen: {
launchShowDuration: 500,
2021-09-30 06:03:50 +00:00
launchAutoHide: false,
androidScaleType: "CENTER_CROP",
splashImmersive: false,
2021-09-30 06:22:21 +00:00
backgroundColor: "#002b36"
2021-09-30 04:42:03 +00:00
},
2022-04-29 03:19:44 +00:00
Keyboard: {
resize: "none"
}
2021-11-29 15:15:29 +00:00
},
ios: {
scheme: "Logseq"
2021-09-30 04:42:03 +00:00
}
// 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;