-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 2.14 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="ko">
<head>
<!-- charset은 Seo의 react-helmet이 <head> 맨 앞에 주입한다(1024바이트 내 보장). -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#FFF7F3" />
<meta name="apple-mobile-web-app-title" content="TappyType" />
<link rel="icon" type="image/png" href="/assets/favicon.png" />
<link rel="apple-touch-icon" href="/assets/icon-180.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Google Fonts는 렌더를 막지 않도록 비동기 로드한다(print→all 스왑). 본문은 폴백 sans로
먼저 그려지고(font-display:swap) 폰트 도착 시 교체 — FCP/LCP의 렌더 지연을 없앤다. -->
<link
rel="preload"
as="style"
href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Nanum+Pen+Script&family=Playfair+Display:wght@600;700&display=swap"
/>
<link
href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Nanum+Pen+Script&family=Playfair+Display:wght@600;700&display=swap"
rel="stylesheet"
media="print"
onload="this.media='all'"
/>
<noscript>
<link
href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Nanum+Pen+Script&family=Playfair+Display:wght@600;700&display=swap"
rel="stylesheet"
/>
</noscript>
<link rel="preload" as="font" type="font/woff2" href="/assets/hero-jiin0606.woff2" crossorigin />
<link rel="preload" as="font" type="font/woff2" href="/assets/hero-jiin0601.woff2" crossorigin />
<link rel="preload" as="font" type="font/woff2" href="/assets/tester-jiin0615.woff2" crossorigin />
</head>
<body>
<!-- 페인트 전 스크롤 리빌 활성화(무JS 환경은 그대로 본문 노출) -->
<script>document.documentElement.classList.add('js-reveal')</script>
<div id="root"></div>
<!-- dev(pnpm dev)는 React SPA로 동작. 프로덕션 빌드에선 scripts/strip-react.mjs 가
이 하이드레이션 스크립트를 제거하고 islands.js(바닐라)를 주입한다. -->
<script type="module" src="/src/main.tsx"></script>
</body>
</html>