forked from KB-its-your-life-Final-Project/FinalProjectFront
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 749 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html lang="">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/src/assets/imgs/lighthouse.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Light House</title>
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script src="https://accounts.google.com/gsi/client" async defer></script>
<!-- ✅ Pretendard 웹폰트 추가 + 폰트 tailwind.config.js 에 수정해야 함-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>