feat: add Vite index.html entry point

This commit is contained in:
2026-04-27 08:25:01 +09:00
parent 7e9bc4bfdd
commit 33d9c3a180

19
index.html Normal file
View File

@@ -0,0 +1,19 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="theme-color" content="#FF6B35" />
<link rel="icon" type="image/png" href="/app-icon-512.png" />
<title>Archetype: First Spark</title>
<style>
html, body { margin: 0; padding: 0; height: 100%; overscroll-behavior: none; -webkit-tap-highlight-color: transparent; }
body { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif; background: #f7f8fa; }
#root { height: 100%; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>