feat(pwa): Service Worker 오프라인 캐싱, 오프라인 화면 및 앱 매니페스트 강화 - #91
Merged
Conversation
- Web App Manifest에 id, scope, shortcuts(글 목록/카테고리/태그/검색), maskable 아이콘 및 basePath 연동 - 오프라인 상태 시 표시할 독립 HTML/CSS 폴백 화면(public/offline.html) 추가 - 불변 정적 에셋(CacheFirst), 페이지/RSC 페이로드(NetworkFirst) 캐싱 전략의 경량 Service Worker(public/sw.js) 구현 - load 이벤트 이후 Service Worker 지연 등록 및 신규 배포 시 토스트 알림을 제공하는 PwaRegister 컴포넌트 추가 - PWA 매니페스트, 오프라인 화면, 서비스 워커 검증 단위 테스트(tests/pwa.test.ts) 추가
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
src/app/manifest.ts)에id,scope,shortcuts(글 목록/카테고리/태그/검색), maskable 아이콘 및NEXT_PUBLIC_BASE_PATH연동public/offline.html) 추가CacheFirst), 페이지/RSC 페이로드(NetworkFirst) 캐싱 전략의 경량 Service Worker(public/sw.js) 구현load이벤트 이후 Service Worker 지연 등록 및 신규 배포 시 토스트 알림을 제공하는PwaRegister컴포넌트(src/features/pwa/pwa-register.tsx) 추가tests/pwa.test.ts) 추가