Astro Test Application
This is a benchmark test application for deployment platforms. It demonstrates various Astro features and rendering modes.
Test Pages
- Static Page (/about) - A purely static page
- Server-Rendered Page (/ssr) - Fetches data on every request
- Server-Cached Page (/isr) - Cached for 60 seconds with s-maxage
- Stale-While-Revalidate Page (/swr) - Uses stale-while-revalidate caching
- API Route (/api/hello) - JSON API endpoint
- Form Page (/form) - Server-side form handling with Astro Actions
- Static Image Page (/image) - Static page with optimized images
- SSR Image Page (/image-ssr) - Server-rendered page with images
- Environment Variable Page (/env) - Displays server-side env var
- Session Handling Page (/session) - Cookie-based session management