- Vite(react-ts) 스캐폴딩, @/* -> src 경로 alias 설정 - 라이브러리 추가: TanStack Query, axios, zustand, slate(react/history), tailwindcss v4 - core/provider.tsx 로 QueryClientProvider 분리 및 main 연결 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
361 B
HTML
14 lines
361 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>temp-vite</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|