one-render-modes
Installation
SKILL.md
Render Modes
Official docs: Routing, Configuration
One lets you set the render mode globally or per-page. Mix modes freely — a single app can have SSG marketing pages, SSR dashboards, SPA admin panels, and API endpoints.
Quick Reference
| Mode | Suffix | Renders | Server Needed | SEO |
|---|---|---|---|---|
| SSG | +ssg |
At build time | No (static files) | Yes |
| SSR | +ssr |
Every request | Yes | Yes |
| SPA | +spa |
Client only | No | No |
| API | +api |
On request | Yes | N/A |