forked from sseung30/Rolling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.01 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>rolling</title>
</head>
<body>
<div id="root"></div>
<script>
// 카카오 SDK 동적 로드
const script = document.createElement('script');
script.src = 'https://t1.kakaocdn.net/kakao_js_sdk/2.7.4/kakao.min.js';
script.onload = function() {
console.log('카카오 스크립트 로드 완료!');
window.kakaoSDKLoaded = true;
};
script.onerror = function() {
console.error('카카오 스크립트 로드 실패!');
};
document.head.appendChild(script);
</script>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>