Astro Guideline: Build — Use hybrid rendering. Description: Mix static and dynamic pages. Do: output: 'hybrid' for flexibility. Don't: All SSR or all static. Good Example: prerender per-page basis. Bad Example: Single rendering mode. Severity: Medium. Docs: https://docs.astro.build/en/guides/server-side-rendering/#hybrid-rendering.