What problem does it solve? Deploying modern web frameworks with server-side rendering, API routes, and middleware to Netlify requires the correct adapter or plugin per framework, and misconfiguration leads to broken SSR, missing functions, or failed builds. ## Core Features & Use Cases - Framework Detection: Identify the framework in use (Astro, Next.js, Nuxt, SvelteKit, Vite + React, TanStack Start, Remix) from config files. - Adapter Setup Guides: Per-framework reference guides covering adapter installation, output modes, API routes, forms, and local development. - General Patterns: SPA catch-all redirects, custom 404 handling, and framework-specific environment variable prefixes. - Use Case: You have an Astro site with on-demand rendering and API routes. Use this Skill to install @astrojs/netlify, set the output mode, and configure netlify.toml so SSR routes deploy as Netlify Functions. ## Quick Start Set up my Vite React project for Netlify deployment including the plugin, SPA redirect, and build configuration.