Files
property-match/index.html
T
johannes.gasser 604032ae65 Initial project setup: Vite 8 + React 19 + TypeScript + Tailwind v4 + React Router v7 + MUI v9
- Vite 8 with @tailwindcss/vite plugin (no PostCSS needed)
- Tailwind v4: imports only theme.css + utilities.css, skipping preflight
- MUI v9 with Emotion, CssBaseline replaces Tailwind preflight
- StyledEngineProvider injectFirst + CSS @layer order for correct cascade
- React Router v7 imported from react-router
- Home page demonstrating MUI components + Tailwind utility classes together

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-13 17:58:42 +02:00

14 lines
366 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>Property Match</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>