Skip to content

Commit 273a40b

Browse files
authored
Merge pull request #167 from sipe-team/develop
feat: favicon icon 캐시 무효화를 위한 수정
2 parents 17bcd00 + ebccb1a commit 273a40b

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

public/apple-icon.png

25.2 KB
Loading
File renamed without changes.

src/app/apple-icon.png

-8.04 KB
Binary file not shown.

src/app/layout.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ function RootLayout({ children }: { children: React.ReactNode }) {
2020
return (
2121
<html lang="ko" className={pretendardFont.className}>
2222
<head>
23+
<link
24+
rel="icon"
25+
href={`/favicon.ico?v=${ASSET_VERSION}`}
26+
type="image/x-icon"
27+
sizes="48x48"
28+
/>
29+
<link
30+
rel="apple-touch-icon"
31+
href={`/apple-icon.png?v=${ASSET_VERSION}`}
32+
type="image/png"
33+
sizes="180x180"
34+
/>
2335
<link
2436
rel="mask-icon"
2537
href={`/assets/safari-pinned-tab.svg?v=${ASSET_VERSION}`}

0 commit comments

Comments
 (0)