gps-info/capacitor.config.ts
2023-01-07 10:25:40 +01:00

20 lines
368 B
TypeScript

import { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'io.nicco.app.gps',
appName: 'GPS Info',
webDir: 'build',
bundledWebRuntime: false,
// server: {
// url: 'http://127.0.0.1:5173',
// cleartext: true,
// },
plugins: {
SplashScreen: {
launchShowDuration: 100,
},
},
}
export default config