Summary
index.html contains <link rel="stylesheet" href="/index.css">, but no index.css exists in the repo. Vite reports during build:
```
/index.css doesn't exist at build time, it will remain unchanged to be resolved at runtime
```
At runtime this produces a 404 for /index.css. All current styling comes from the inline <style> block and the Tailwind CDN script, so the link appears to be dead.
Context
Surfaced while validating the Vite 6→8 bump (PR #4). Pre-existing, unrelated to the bump — out of scope for that PR.
Suggested fix
Either remove the dead <link rel="stylesheet" href="/index.css"> line, or add a real index.css if styles were meant to live there.
Summary
index.html contains
<link rel="stylesheet" href="/index.css">, but noindex.cssexists in the repo. Vite reports during build:```
/index.css doesn't exist at build time, it will remain unchanged to be resolved at runtime
```
At runtime this produces a 404 for
/index.css. All current styling comes from the inline<style>block and the Tailwind CDN script, so the link appears to be dead.Context
Surfaced while validating the Vite 6→8 bump (PR #4). Pre-existing, unrelated to the bump — out of scope for that PR.
Suggested fix
Either remove the dead
<link rel="stylesheet" href="/index.css">line, or add a realindex.cssif styles were meant to live there.