Rendering
Static now, hybrid later
Route rules and prerendered routes keep delivery simple today while leaving room for authenticated SSR flows later.
Static-first Nuxt architecture
This starter keeps routing, data access, and presentation separated so you can generate a static site today and grow into hybrid rendering when product needs change.
Rendering strategy
Public content
Pre-rendered for speed and simple hosting.
Authenticated app area
Reserved in route rules for SSR later.
The project is intentionally small, but the structure is ready for growth. Content routes are static, business logic sits outside page templates, and UI components stay reusable.
Rendering
Route rules and prerendered routes keep delivery simple today while leaving room for authenticated SSR flows later.
Data layer
Pages consume a stable data interface so swapping local mock data for remote APIs later stays low-risk.
Design system
Core interface pieces are extracted into minimal components that keep the codebase clean without adding heavy abstractions.
Ready to extend
Add server routes, authenticated pages, or API-backed content later without rewriting the UI layer.