mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-12 16:05:12 +08:00
19 lines
338 B
TypeScript
19 lines
338 B
TypeScript
import type { CapacitorConfig } from '@capacitor/cli'
|
|
|
|
const config: CapacitorConfig = {
|
|
appId: 'games.wenzi.ogame',
|
|
appName: 'OGame Vue Ts',
|
|
webDir: 'docs',
|
|
server: {
|
|
androidScheme: 'https'
|
|
},
|
|
android: {
|
|
buildOptions: {
|
|
keystorePath: undefined,
|
|
keystoreAlias: undefined
|
|
}
|
|
}
|
|
}
|
|
|
|
export default config
|