feat: PWA 기본 설정 (manifest, service worker, 앱 아이콘)
- manifest.json: 앱 이름 "청춘약국 마일리지", standalone 모드, 보라색 테마 - sw.js: 정적 자산 캐싱 (동적 페이지 제외) - 앱 아이콘 192x192, 512x512 PNG 생성 - /sw.js 루트 라우트로 서비스 워커 scope 허용 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
25
backend/static/manifest.json
Normal file
25
backend/static/manifest.json
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"name": "청춘약국 마일리지",
|
||||
"short_name": "청춘약국",
|
||||
"description": "청춘약국 QR 마일리지 적립 서비스",
|
||||
"start_url": "/my-page",
|
||||
"display": "standalone",
|
||||
"background_color": "#f5f7fa",
|
||||
"theme_color": "#6366f1",
|
||||
"orientation": "portrait",
|
||||
"lang": "ko",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/icons/icon-192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "/static/icons/icon-512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user