fix(ios): 상단 이중 인셋 제거(contentInset never) + 광고 배너를 footer 안으로
CI / build (push) Failing after 13m33s

- contentInset: always→never — CSS safe-area(env inset)와 겹쳐 상하단 여백이
  이중으로 잡히던 문제 해결
- AdBanner 를 q-footer 안(탭바 위)으로 이동 — 콘텐츠가 광고에 가리지 않고
  레이아웃이 footer 높이를 정상 예약. 유료 티어는 배너 숨김으로 공간 회수.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
sb
2026-07-11 15:37:08 +09:00
parent 16d7cf4332
commit 35d26e3563
2 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -5,7 +5,8 @@ const config: CapacitorConfig = {
appName: '산책갈개',
webDir: 'dist',
ios: {
contentInset: 'always',
// never + CSS safe-area(env inset)로 노치/홈바 여백 처리 (이중 인셋 방지)
contentInset: 'never',
},
server: {
androidScheme: 'https',