---
url: "https://vercel.com/docs/frameworks"
title: Frameworks on Vercel
domain: vercel.com
locale: en
type: docs
author: Vercel
updated: 2026-08-11
words: 466
technicality: 4
promotional: 4
cited_by: 3
indexed_by: stealpage
---

Vercel has first-class support for [a wide range of the most popular frameworks](https://vercel.com/docs/frameworks/more-frameworks). You can build and deploy using frontend, backend, and full-stack frameworks ranging from SvelteKit to Nitro, often without any upfront configuration.

Learn how to [get started with Vercel](https://vercel.com/docs/getting-started-with-vercel) or clone one of our example repos to your favorite git provider and deploy it on Vercel using one of the templates below:

Get started in minutes

## Deploy a Template

Vercel deployments can [integrate with your git provider](https://vercel.com/docs/git) to [generate preview URLs](https://vercel.com/docs/deployments/environments#preview-environment-pre-production) for each pull request you make to your project.

Deploying on Vercel with one of our [supported frameworks](https://vercel.com/docs/frameworks/more-frameworks) gives you access to many features, such as:

-   [Vercel Functions](https://vercel.com/docs/functions) enable developers to write functions that scale based on traffic demands, preventing failures during peak hours and reducing costs during low activity.
-   [Middleware](https://vercel.com/docs/routing-middleware) is code that executes before a request is processed on a site, enabling you to modify the response. Because it runs before the cache, Middleware is an effective way to personalize statically generated content.
-   [Multi-runtime Support](https://vercel.com/docs/functions/runtimes) allows the use of various runtimes for your functions, each with unique libraries, APIs, and features tailored to different technical requirements.
-   [Incremental Static Regeneration](https://vercel.com/docs/incremental-static-regeneration) enables content updates without redeployment. Vercel caches the page to serve it statically and rebuilds it on a specified interval.
-   [Speed Insights](https://vercel.com/docs/speed-insights) provide data on your project's Core Web Vitals performance in the Vercel dashboard, helping you improve loading speed, responsiveness, and visual stability.
-   [Analytics](https://vercel.com/docs/analytics) offer detailed insights into your website's performance over time, including metrics like top pages, top referrers, and user demographics.
-   [Skew Protection](https://vercel.com/docs/skew-protection) uses version locking to ensure that the client and server use the same version of your application, preventing version skew and related errors.

The following table shows which features are supported by each framework on Vercel. The framework list represents the most popular frameworks deployed on Vercel.

Supported

Not Supported

Not Applicable

Framework feature matrix

Feature

Next.js

SvelteKit

Nuxt

TanStack

Astro

Remix

Vite

CRA

No rows displayed.

The [Build Output API](https://vercel.com/docs/build-output-api) is a file-system-based specification for a directory structure that produces a Vercel deployment. It is primarily targeted at framework authors who want to integrate their frameworks with Vercel's platform features. By implementing this directory structure as the output of their build command, framework authors can utilize all Vercel platform features, such as Vercel Functions, Routing, and Caching.

If you are not using a framework, you can still use these features by manually creating and populating the `.vercel/output` directory according to this specification. Complete examples of Build Output API directories can be found in [vercel/examples](https://github.com/vercel/examples/tree/main/build-output-api), and you can read our [blog post](https://vercel.com/blog/build-your-own-web-framework) on using the Build Output API to build your own framework with Vercel.

Learn more about deploying your preferred framework on Vercel with the following resources: