forked from plango2025/plango-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 921 Bytes
/
index.html
File metadata and controls
28 lines (27 loc) · 921 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!-- React-Quill 스타일시트 -->
<link
rel="stylesheet"
href="https://unpkg.com/react-quill@1.3.3/dist/quill.snow.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<!-- Kakao SDK 사용 시 아래 스크립트 복구하세요
<script src="https://t1.kakaocdn.net/kakao_js_sdk/1.43.0/kakao.min.js"
integrity="sha384-+xH3cV4rQ+UlU1yUXeY2lSyOjF6+6qfHZox8cl4GFepqAVTwBXnFbgx2FhKMfZ9V"
crossorigin="anonymous"></script>
<script>
Kakao.init('1a6b77ff47c65617812291ae618ed488');
console.log(Kakao.isInitialized());
</script>
-->
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>