• Introducing vercel.ts: Programmatic project configuration

    Vercel now supports vercel.ts, a new TypeScript-based configuration file that brings type safety, dynamic logic, and better developer experience to project configuration.

    vercel.ts lets you express configuration as code by defining advanced routing, request transforms, caching rules, and cron jobs, going beyond what static JSON can express. In addition to full type safety, this also allows access to environment variables, shared logic, and conditional behavior.

    All projects can now use vercel.ts (or .js, .mjs, .cjs, .mts) for project configuration. Properties are defined identically to vercel.json and can be enhanced using the new @vercel/config package.

    vercel.ts
    import { type VercelConfig, routes, deploymentEnv } from '@vercel/config/v1';
    export const config: VercelConfig = {
    framework: 'nextjs',
    crons: [
    { path: '/api/cleanup', schedule: '0 0 * * *' },
    { path: '/api/sync-users', schedule: '*/15 * * * *' },
    ],
    rewrites: [
    routes.rewrite('/(.*)', 'https://external-api.com', {
    requestHeaders: {
    'proxy-header': deploymentEnv('PROXY_HEADER')
    }
    }),
    ],
    };

    Try the playground to explore vercel.ts, learn how to migrate from an existing vercel.json, or read the documentation and the @vercel/config package.

  • Chat with Vercel Marketplace integrations using Vercel Agent

    image (124)image (124)

    You can now interact with installed Marketplace integrations using Vercel Agent in the Dashboard. This feature launches with support from Marketplace providers including Neon, Supabase, Dash0, Stripe, Prisma and Mux, with more coming soon.

    You can use Vercel Agent, a chat-based interface to talk to Marketplace Providers MCP (Model Context Protocol), allowing you to query, debug, and manage connected services directly from Vercel. Tools exposed by providers are available automatically, with authentication and configuration handled by Vercel.

    Available free for Vercel Pro and Enterprise customers, with an optional Read-Only mode for safe exploration and debugging.

    Link to headingHow to get started

    • Install or visit a supported Marketplace integration

    • Click on Agent Tools in the left navigation to open the chat interface.

    • Your installed integration's tools load automatically and are ready to use.

    Learn more and get started in the documentation.

    +3

    Tony P, Dima V, Hedi Z, Justin K, Ismael R

  • Reduced prices for TLDs .site, .space, .website, .fun, .online, .store, .tech

    Vercel Domains now offers reduced prices for the following TLDs:

    • .site: Now $1.99, down from $2.99

    • .space: Now $1.99, down from $4.99

    • .website: Now $1.99, down from $4.99

    • .fun: Now $1.99, down from $4.99

    • .online: Now $1.99, down from $2.99

    • .store: Now $1.99, down from $2.99

    • .tech: Now $7.99, down from $13.99

    Prices for premium domains are not affected by this pricing change.

    Get your domain today at vercel.com/domains.

  • Bulk redirects UI, API, and CLI now generally available

    Vercel users can now configure bulk redirects using UI, API, or CLI without a new deployment.

    Vercel's bulk redirects allow up to one million static URL redirects per project. In addition to bulk redirects support via vercel.json, these new changes simplify how teams can manage large-scale migrations, quickly fix broken links, handle expired pages, and more.

    You can modify redirects individually, or in bulk by uploading CSV files. Redirect changes are initially staged for testing before publishing to production, and include a version history to see and restore historical versions.

    This feature is available for Pro and Enterprise customers, with rates for additional capacity:

    • Pro: 1,000 bulk redirects included per project

    • Enterprise: 10,000 bulk redirects included per project

    • Additional capacity: starts at $50/month per 25,000 redirects

    Get started with bulk redirects, or learn more.

  • Preview URLs optimized for multi-tenant platforms

    Vercel helps you create multi-tenant platforms, where a single project can be backed by tens of thousands of domains, like vibe coding platforms, website builders, e-commerce storefronts and more. We're making it even easier to build those styles of apps today by introducing dynamic URL prefixes.

    Dynamic URL prefixes allow you to prefix your existing deployment urls with {data}---, for example tenant-123---project-name-git-branch.yourdomain.dev

    This will route the traffic to project-name-git-branch.yourdomain.dev while keeping tenant-123--- in the url which your app can extract and route based on it.

    Previously, preview URLs were designed to match a specific preview deployment exactly and Vercel wouldn’t have enough information to route domains to a specific preview deployment.

    Now you can:

    • Create unique preview URLs for each tenant

    • Encode metadata, routing context, or automation signals directly in the URL

    • Use flexible URL structures such as: tenant-123---project-name-git-branch.yourdomain.dev

    Preview URLs for multi-tenant platforms are available for Pro and Enterprise teams, and require a Preview Deployment Suffix (a Pro add-on).

    Try the demo or to get started, go to your team's settings to set your Preview Deployment Suffix. Then, follow our guide on configuring multi-tenant preview URLs.

  • AWS databases now available on the Vercel Marketplace

    AWS Databases coming to the Vercel MarketplaceAWS Databases coming to the Vercel Marketplace

    Today we’re introducing native support for AWS databases including Amazon Aurora PostgreSQL, Amazon Aurora DSQL, and Amazon DynamoDB on the Vercel Marketplace.

    This gives developers a direct path to provision and manage scalable, production-ready AWS databases from within the Vercel dashboard with no manual setup required, and:

    • One-click support for creating a new AWS account, provisioning new AWS databases and linking them to your Vercel projects.

    • Improved developer experience with simplified region selection, secure credential handling, and unified monitoring of AWS database resources from Vercel.

    • Automatic environment variable for connection strings and credentials, securely stored within your Vercel project.

    • Free starter plan for new AWS customers, including $100 in credits, with deep links to manage or upgrade plans in the AWS console.

    • And coming soon: Provision databases into your existing AWS account, attach them to your projects, and access AWS databases directly inside v0.

    node-postgres
    import { Signer } from "@aws-sdk/rds-signer";
    import { awsCredentialsProvider } from "@vercel/functions/oidc";
    import { attachDatabasePool } from "@vercel/functions";
    import { Pool } from "pg";
    const signer = new Signer({
    hostname: process.env.PGHOST,
    port: Number(process.env.PGPORT),
    username: process.env.PGUSER,
    region: process.env.AWS_REGION,
    credentials: awsCredentialsProvider({
    roleArn: process.env.AWS_ROLE_ARN,
    clientConfig: { region: process.env.AWS_REGION },
    }),
    });
    const pool = new Pool({
    host: process.env.PGHOST,
    user: process.env.PGUSER,
    database: process.env.PGDATABASE || "postgres",
    password: () => signer.getAuthToken(),
    port: Number(process.env.PGPORT),
    ssl: { rejectUnauthorized: false },
    });
    attachDatabasePool(pool);
    pool.query("select * from movies where id = $1", [id]);

    Link to headingGetting started

    1. Navigate to the Vercel Marketplace and select AWS

    2. Choose Create new account to provision a database

    3. Select your database type, region, and plan (including a free starter plan with $100 in credits for new AWS customers) and hit create

    4. Connect it to your project. Vercel automatically handles credentials and configuration

    You can also try a working example by deploying the Movie Fetching Database template to see the integration end-to-end.

    +4

    Michael T, Dima V, Marc G, Hedi Z, Marc B, Yasoob R

  • Gemini 3 Flash is now available on the Vercel AI Gateway

    You can now access Google's latest Gemini model, Gemini 3 Flash, with Vercel's AI Gateway and no other provider accounts required.

    It is Google's most intelligent model that is optimized for speed, with Gemini 3's pro-grade reasoning alongside flash-level latency, efficiency, and cost. Gemini 3 Flash significantly outperforms the previous Gemini 2.5 models, beating Gemini 2.5 Pro across most benchmarks, while using 30% less tokens and is 3x faster at a fraction of the cost.

    To use the Gemini 3 Flash with the AI SDK, set the model to google/gemini-3-flash:

    import { streamText } from 'ai';
    const result = streamText({
    model: 'google/gemini-3-flash',
    prompt:
    `Produce a step-by-step analysis that solves a novel
    problem, exposes intermediate logic, and delivers a final answer
    using minimal tokens and maximal inference density.`
    providerOptions: {
    google: {
    thinkingLevel: 'high',
    includeThoughts: true
    },
    },
    });

    AI Gateway provides a unified API for calling models, tracking usage and cost, and configuring retries, failover, and performance optimizations for higher-than-provider uptime. It includes built-in observability, Bring Your Own Key support, and intelligent provider routing with automatic retries.

    Learn more about AI Gateway, view the AI Gateway model leaderboard or try it in our model playground.

    AI Gateway: Track top AI models by usage

    The AI Gateway model leaderboard ranks the most used models over time by total token volume across all traffic through the Gateway. Updates regularly.

    View the leaderboard

  • Vercel Knowledge Base

    Vercel Knowledge Base is a new home for guides, tutorials, and best practices for developers building on Vercel, including how to:

    You can use the Knowledge Base to find and explore guides for specific use cases with:

    • Semantic AI search: describe what you're trying to achieve

    • AI chat: ask our agent about a guide

    • Filters: search guides by Vercel product or feature