Skip to content

Commit 6806247

Browse files
authored
[#619] PWA 구현 (#621)
* feat: manifest 작성 * feat: PWAServiceWorker 작성 * chore: gitignore 추가 * chore: icon 이미지 추가 * chore: appleSplashScreen 이미지 추가 * feat: appleSplashScreen 적용 * feat: 메타데이터 추가 및 수정 * chore: manifest 불필요한 옵션 제거 * chore: 중복되는 meta태그 제거 * fix: 최상단 상태바 버그 수정 * feat: pwa환경 수직 패딩값 추가 * feat: pwa에서 bottomNavigation pb값 추가 및 statusBarStyle 속성 제거 * fix: BottomNavigation 고정 height값 제거 * feat: pb-safe 속성 추가 * fix: apple-touch-icon 아이콘 버그 수정 * fix: BottomNavigation 비정상적으로 보이던 문제 해결 * fix: 컴포넌트들의 position이 동적으로 바뀌도록 수정 * chore: import문 절대경로로 수정 * chore: 불필요한 className 제거
1 parent fbe50da commit 6806247

File tree

55 files changed

+345
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+345
-20
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,12 @@ yarn-error.log*
3434
# typescript
3535
*.tsbuildinfo
3636
next-env.d.ts
37+
38+
# auto generated pwa files
39+
# Auto Generated PWA files
40+
**/public/sw.js
41+
**/public/workbox-*.js
42+
**/public/worker-*.js
43+
**/public/sw.js.map
44+
**/public/workbox-*.js.map
45+
**/public/worker-*.js.map

public/images/icon-128x128.png

3.88 KB

public/images/icon-192x192.png

6.35 KB

public/images/icon-256x256.png

7.99 KB

public/images/icon-384x384.png

14.4 KB

public/images/icon-512x512.png

15.8 KB
84.2 KB
86.7 KB
88.3 KB
89 KB

0 commit comments

Comments
 (0)