mirror of
https://github.com/cupcakearmy/gps-info.git
synced 2024-12-23 08:36:27 +00:00
20 lines
368 B
TypeScript
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
|