Nuxt 4 Server Development Server routes, API patterns, and backend development with Nitro. Quick Reference File-Based Server Routes HTTP Method Suffixes | Suffix | HTTP Method | |--------|-------------| | | GET | | | POST | | | PUT | | | PATCH | | | DELETE | | | All methods | When to Load References Load when: - Implementing complex API routes - Handling authentication and sessions - Working with cookies and headers - Building file upload endpoints - Understanding Nitro internals Load when: - Integrating Cloudflare D1 with Drizzle - Setting up PostgreSQL connections - Implementing database mi…