forked from codeit18-rolling/Rolling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (20 loc) · 893 Bytes
/
index.html
File metadata and controls
21 lines (20 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rolling</title>
<!-- favicon -->
<link rel="icon" type="image/svg+xml" sizes="28x28" href="/src/assets/icon/ic-rolling-paperplain.svg" />
<link rel="apple-touch-icon" type="image/svg+xml" sizes="28x28" href="/src/assets/icon/ic-rolling-paperplain.svg" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<script src="https://t1.kakaocdn.net/kakao_js_sdk/2.7.6/kakao.min.js" integrity="sha384-WAtVcQYcmTO/N+C1N+1m6Gp8qxh+3NlnP7X1U7qP6P5dQY/MsRBNTh+e1ahJrkEm" crossorigin="anonymous"></script>
<script type="module">
Kakao.init(import.meta.env.VITE_KAKAO_APP_KEY);
</script>
</body>
</html>