- 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
14 lines
359 B
HTML
14 lines
359 B
HTML
<!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>
|