604032ae65
- 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>
14 lines
366 B
HTML
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>
|