Files
dognation_PT/capacitor.config.ts
T
ByungCheol 7dec505d08
CI / build (push) Failing after 15m6s
chore(app): 앱 패키지 kr.sblog.dognation → com.dog.dognation (구글 OAuth Android 클라 일치)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-12 11:15:33 +09:00

17 lines
369 B
TypeScript

import type { CapacitorConfig } from '@capacitor/cli'
const config: CapacitorConfig = {
appId: 'com.dog.dognation',
appName: '산책갈개',
webDir: 'dist',
ios: {
// never + CSS safe-area(env inset)로 노치/홈바 여백 처리 (이중 인셋 방지)
contentInset: 'never',
},
server: {
androidScheme: 'https',
},
}
export default config