feat(01-01): scaffold Vite 6 + React 18 + TypeScript 5 project
- Created Vite 6 project with React 18 and TypeScript 5 template - Installed zod, react-hook-form, @hookform/resolvers (production) - Installed tailwindcss @tailwindcss/vite (Tailwind v4 via Vite plugin) - Installed vitest, @testing-library/react, @testing-library/dom (dev) - Configured Tailwind v4 via @tailwindcss/vite plugin in vite.config.ts - Set src/index.css to @import "tailwindcss" (no postcss/tailwind.config.js) - Created minimal App.tsx with Tailwind classes, .gitignore - Auto-fix (Rule 1): added src/vite-env.d.ts for CSS module type declarations
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Ready2Blob</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
<script type="module" src="/src/main.tsx"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user