Frontend
Installation
SKILL.md
Frontend
First, apply all rules from the vercel-react-best-practices skill. The rules below extend and override that baseline for Singleton SD personal projects.
Stack Decision
Before writing any code, pick the right project type:
| Scenario | Stack |
|---|---|
| SEO matters, auth required, or DB access needed | Next.js App Router |
| Pure client-side tool, dashboard, or internal app | React + Vite SPA + NestJS API |
| Need a real backend for either type above | NestJS |
Default to Next.js App Router when in doubt — you can always skip the server features.