# Routing Middleware > Vercel Routing Middleware guidance — request interception before cache, rewrites, redirects, personalization. Works with any framework. Supports Edge, Node.js, and Bun runtimes. Use when intercepting requests at the platform level. Fuente: https://skillsagentes.com/skills/vercel/vercel-plugin/routing-middleware Markdown: https://skillsagentes.com/skills/vercel/vercel-plugin/routing-middleware.md Repositorio: https://github.com/vercel/vercel-plugin Autor: vercel Licencia: NOASSERTION Actualizado: hace 4 meses Coste de contexto: 58 tok instalada, 2.8k tok al activarse, 2.8k tok con todos los archivos del bundle Bundle: 1 archivo, 11 KB Permisos que pide: ninguno declarado ## Instalación Un skill son archivos markdown: los mismos archivos valen para cualquier agente y lo único que cambia es el directorio de destino, es decir la bandera `--agent`. Añade `-g` para instalarlo en todos los proyectos de la máquina. ```bash # Claude Code npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent claude-code # Cursor npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent cursor # Codex npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent codex # Gemini CLI npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent gemini # Windsurf npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent windsurf # Cline npx -y skills add vercel/vercel-plugin --skill routing-middleware --agent cline ``` ## Antes de instalar - makes network requests ## Archivos - SKILL.md — 11 KB ## SKILL.md Reproducido tal cual desde vercel/vercel-plugin bajo NOASSERTION. Esta sección es el documento original y está en inglés. # Vercel Routing Middleware You are an expert in Vercel Routing Middleware — the platform-level request interception layer. ## What It Is Routing Middleware runs **before the cache** on every request matching its config. It is a **Vercel platform** feature (not framework-specific) that works with Next.js, SvelteKit, Astro, Nuxt, or any deployed framework. Built on Fluid Compute. - **File**: `middleware.ts` or `middleware.js` at the project root - **Default export required** (function name can be anything) - **Runtimes**: Edge (default), Node.js (`runtime: 'nodejs'`), Bun (Node.js + `bunVersion` in vercel.json) ## CRITICAL: Middleware Disambiguation There are THREE "middleware" concepts in the Vercel ecosystem: | Concept | File | Runtime | Scope | When to Use | |---------|------|---------|-------|-------------| | **Vercel Routing Middleware** | `middleware.ts` (root) | Edge/Node/Bun | Any framework, platform-level | Request interception before cache: rewrites, redirects, geo, A/B | | **Next.js 16 Proxy** | `proxy.ts` (root, or `src/proxy.ts` if using `--src-dir`) | Node.js only | Next.js 16+ only | Network-boundary proxy needing full Node APIs. NOT for auth. | | **Edge Functions** | Any function file | V8 isolates | General-purpose | Standalone edge compute endpoints, not an interception layer | **Why the rename in Next.js 16**: `middleware.ts` → `proxy.ts` clarifies it sits at the network boundary (not general-purpose middleware). Partly motivated by CVE-2025-29927 (middleware auth bypass via `x-middleware-subrequest` header). The exported function must also be renamed from `middleware` to `proxy`. Migration codemod: `npx @next/codemod@latest middleware-to-proxy` **Deprecation**: Next.js 16 still accepts `middleware.ts` but treats it as deprecated and logs a warning. It will be removed in a future version. ## Bun Runtime To run Routing Middleware (and all Vercel Functions) on Bun, add `bunVersion` to `vercel.json`: ```json { "bunVersion": "1.x" } ``` Set the middleware runtime to `nodejs` — Bun replaces the Node.js runtime transparently: ```ts export const config = { runtime: 'nodejs', // Bun swaps in when bunVersion is set }; ``` Bun reduces average latency by ~28% in CPU-bound workloads. Currently in Public Beta — supports Next.js, Express, Hono, and Nitro. ## Basic Example ```ts // middleware.ts (project root) import { geolocation, rewrite } from '@vercel/functions'; export default function middleware(request: Request) { const { country } = geolocation(request); const url = new URL(request.url); url.pathname = country === 'US' ? '/us' + url.pathname : '/intl' + url.pathname; return rewrite(url); } export const config = { runtime: 'edge', // 'edge' (default) | 'nodejs' }; ``` ## Helper Methods (`@vercel/functions`) For non-Next.js frameworks, import from `@vercel/functions`: | Helper | Purpose | |--------|---------| | `next()` | Continue middleware chain (optionally modify headers) | | `rewrite(url)` | Transparently serve content from a different URL | | `geolocation(request)` | Get `city`, `country`, `latitude`, `longitude`, `region` | | `ipAddress(request)` | Get client IP address | | `waitUntil(promise)` | Keep function running after response is sent | For Next.js, equivalent helpers are on `NextResponse` (`next()`, `rewrite()`, `redirect()`) and `NextRequest` (`request.geo`, `request.ip`). ## Matcher Configuration Middleware runs on **every route** by default. Use `config.matcher` to scope it: ```ts // Single path export const config = { matcher: '/dashboard/:path*' }; // Multiple paths export const config = { matcher: ['/dashboard/:path*', '/api/:path*'] }; // Regex: exclude static files export const config = { matcher: ['/((?!_next/static|favicon.ico).*)'], }; ``` **Tip**: Using `matcher` is preferred — unmatched paths skip middleware invocation entirely (saves compute). ## Common Patterns ### IP-Based Header Injection ```ts import { ipAddress, next } from '@vercel/functions'; export default function middleware(request: Request) { return next({ headers: { 'x-real-ip': ipAddress(request) || 'unknown' } }); } ``` ### A/B Testing via Edge Config ```ts import { get } from '@vercel/edge-config'; import { rewrite } from '@vercel/functions'; export default async function middleware(request: Request) { const variant = await get('experiment-homepage'); // <1ms read const url = new URL(request.url); url.pathname = variant === 'B' ? '/home-b' : '/home-a'; return rewrite(url); } ``` ### Background Processing ```ts import type { RequestContext } from '@vercel/functions'; export default function middleware(request: Request, context: RequestContext) { context.waitUntil( fetch('https://analytics.example.com/log', { method: 'POST', body: request.url }) ); return new Response('OK'); } ``` ## Request Limits | Limit | Value | |-------|-------| | Max URL length | 14 KB | | Max request body | 4 MB | | Max request headers | 64 headers / 16 KB total | ## Three CDN Routing Mechanisms Vercel's CDN supports three routing mechanisms, evaluated in this order: | Order | Mechanism | Scope | Deploy Required | How to Configure | |-------|-----------|-------|-----------------|------------------| | 1 | **Bulk Redirects** | Up to 1M static path→path redirects | No (runtime via Dashboard/API/CLI) | Dashboard, CSV upload, REST API | | 2 | **Project-Level Routes** | Headers, rewrites, redirects | No (instant publish) | Dashboard, API, CLI, Vercel SDK | | 3 | **Deployment Config Routes** | Full routing rules | Yes (deploy) | `vercel.json`, `vercel.ts`, `next.config.ts` | **Project-level routes** (added March 2026) let you update routing rules — response headers, rewrites to external APIs — without triggering a new deployment. They run after bulk redirects and before deployment config routes. Available on all plans. ### Project-Level Routes — Configuration Methods Project-level routes take effect instantly (no deploy required). Four ways to manage them: | Method | How | |--------|-----| | **Dashboard** | Project → CDN → Routing tab. Live map of global traffic, cache management, and route editor in one view. | | **REST API** | `GET/POST/PATCH/DELETE /v1/projects/{projectId}/routes` — 8 dedicated endpoints for CRUD on project routes. | | **Vercel CLI** | Managed via `vercel.ts` / `@vercel/config` commands (`compile`, `validate`, `generate`). | | **Vercel SDK** | `@vercel/config` helpers: `routes.redirect()`, `routes.rewrite()`, `routes.header()`, plus `has`/`missing` conditions and transforms. | Use project-level routes for operational changes (CORS headers, API proxy rewrites, A/B redirects) that shouldn't require a full redeploy. ## Programmatic Configuration with `vercel.ts` Instead of static `vercel.json`, you can use `vercel.ts` (or `.js`, `.mjs`, `.cjs`, `.mts`) with the `@vercel/config` package for type-safe, dynamic routing configuration: ```ts // vercel.ts import { defineConfig } from '@vercel/config'; export default defineConfig({ rewrites: [ { source: '/api/:path*', destination: 'https://backend.example.com/:path*' }, ], headers: [ { source: '/(.*)', headers: [{ key: 'X-Frame-Options', value: 'DENY' }] }, ], }); ``` CLI commands: - `npx @vercel/config compile` — compile to JSON (stdout) - `npx @vercel/config validate` — validate and show summary - `npx @vercel/config generate` — generate `vercel.json` locally for development **Constraint**: Only one config file per project — `vercel.json` or `vercel.ts`, not both. ## When to Use - Geo-personalization of static pages (runs before cache) - A/B testing rewrites with Edge Config - Custom redirects based on request properties - Header injection (CSP, CORS, custom headers) - Lightweight auth checks (defense-in-depth only — not sole auth layer) - Project-level routes for headers/rewrites without redeploying ## When NOT to Use - Need full Node.js APIs in Next.js → use `proxy.ts` - General compute at the edge → use Edge Functions - Heavy business logic or database queries → use server-side framework features - Auth as sole protection → use Layouts, Server Components, or Route Handlers - Thousands of static redirects → use Bulk Redirects (up to 1M per project) ## References - 📖 docs: https://vercel.com/docs/routing-middleware - 📖 API reference: https://vercel.com/docs/routing-middleware/api - 📖 getting started: https://vercel.com/docs/routing-middleware/getting-started ## Dónde encaja - Categoría: [Seguridad](https://skillsagentes.com/categorias/seguridad.md) — Auditorías, revisión de dependencias, manejo de secretos y modelado de amenazas. - Creador: [vercel](https://skillsagentes.com/creators/vercel.md) — 79 skills en el directorio - [Todas las skills](https://skillsagentes.com/skills.md) - [Ranking de instalaciones](https://skillsagentes.com/ranking.md) ## Otras skills del mismo repositorio - [Knowledge Update](https://skillsagentes.com/skills/vercel/vercel-plugin/knowledge-update.md): Corrects outdated LLM knowledge about the Vercel platform and introduces new products. Injected at session start. - [Vercel Connect](https://skillsagentes.com/skills/vercel/vercel-plugin/vercel-connect.md): Vercel Connect expert guidance — securely obtain scoped OAuth tokens for third-party services (Slack, GitHub, MCP servers, OAuth, Snowflake) on behalf of apps or users via Vercel OIDC. Use when wiring up third-party API access, connecting to MCP servers, sending Slack messages, accessing GitHub APIs, receiving webhook events from Slack/Linear/GitHub and forwarding them to your agents and apps, or building eve agent connections. - [Vercel Functions](https://skillsagentes.com/skills/vercel/vercel-plugin/vercel-functions.md): Vercel Functions expert guidance — Serverless Functions, Edge Functions, Fluid Compute, streaming, Cron Jobs, and runtime configuration. Use when configuring, debugging, or optimizing server-side code running on Vercel. - [Cdn Caching](https://skillsagentes.com/skills/vercel/vercel-plugin/cdn-caching.md): Debug Vercel CDN caching — cache hit rate, stale content, revalidation behavior, ISR + PPR, per-request cache reasons (cacheReason) and PPR state (ppr_state), and costs. - [Eve](https://skillsagentes.com/skills/vercel/vercel-plugin/eve.md): eve framework guidance for durable AI agents and agent-powered applications. Use when creating, editing, or debugging an eve project, when the user explicitly asks for eve, or when the build-agents skill has selected eve as the default framework. Covers eve's filesystem-first runtime, durable sessions, tools, skills, connections, channels, sandboxes, subagents, schedules, evals, frontend clients, and Agent Runs observability. Do not use for incidental agent mentions, generic agent-building prompts, or established non-eve stacks unless the user asks for comparison or migration. ## Skills relacionadas - [Benchmark Agents](https://skillsagentes.com/skills/vercel/vercel-plugin/benchmark-agents.md): Advanced AI agent benchmark scenarios that push Vercel's cutting-edge platform features — Workflow SDK, AI Gateway, MCP, Chat SDK, Queues, Flags, Sandbox, and multi-agent orchestration. Designed to stress-test skill injection for complex, multi-system builds. - [Benchmark E2e](https://skillsagentes.com/skills/vercel/vercel-plugin/benchmark-e2e.md): End-to-end benchmark suite for vercel-plugin. Runs realistic projects through skill injection, launches dev servers, verifies everything works, analyzes conversation logs, and produces an improvement report for overnight self-improvement loops. - [Benchmark Sandbox](https://skillsagentes.com/skills/vercel/vercel-plugin/benchmark-sandbox.md): Run vercel-plugin eval scenarios in Vercel Sandboxes instead of local WezTerm panels. Provisions ephemeral microVMs with Claude Code + plugin pre-installed, runs benchmark prompts, extracts hook artifacts, and produces coverage reports. - [Benchmark Testing](https://skillsagentes.com/skills/vercel/vercel-plugin/benchmark-testing.md): Create and launch benchmark test projects to exercise vercel-plugin skill injection across realistic scenarios. Sets up isolated directories, installs the plugin, and spawns WezTerm panes running Claude Code with crafted prompts. - [Plugin Audit](https://skillsagentes.com/skills/vercel/vercel-plugin/plugin-audit.md): Audit vercel-plugin performance on real-world projects. Extracts tool calls from Claude Code conversation logs, tests hook matching against actual inputs, identifies pattern coverage gaps, and checks plugin cache staleness. Use when asked to audit, test, or investigate plugin skill injection on a real project. --- Skills Agentes · [Índice de páginas en markdown](https://skillsagentes.com/sitemap.md) · [Inicio](https://skillsagentes.com/index.md)