forked from FRONTENDSCHOOL8/shoong
-
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) · 806 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 806 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="ko-KR">
<head>
<meta charset="UTF-8" />
<title>SHOONG</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="/icons/favicon.svg" type="image/x-icon" />
<link rel="stylesheet" href="./src/styles/tailwind.css" />
<link
href="https://cdn.jsdelivr.net/gh/sun-typeface/SUIT/fonts/variable/woff2/SUIT-Variable.css"
rel="stylesheet"
/>
<script src="//dapi.kakao.com/v2/maps/sdk.js?appkey=%VITE_KAKAO_MAP_API_KEY%&libraries=services,clusterer,drawing"></script>
<script type="module" src="/src/main.jsx"></script>
</head>
<body>
<noscript>이 앱을 사용하려면 자바스크립트 활성화가 필요합니다.</noscript>
<div id="root"></div>
</body>
</html>