• MiniMax M2.1 now live on Vercel AI Gateway

    You can now access MiniMax's latest model, M2.1, with Vercel's AI Gateway and no other provider accounts required.

    MiniMax M2.1 is faster than its predecessor M2, with clear improvements specifically in coding use cases and complicated multi-step tasks with tool calls. M2.1 writes higher quality code, is better at following instructions for difficult tasks, and has a cleaner reasoning process. The model has breadth in addition to depth, with improved performance across multiple coding languages (Go, C++, JS, C#, TS, etc.) and refactoring, feature adds, bug fixes, and code review.

    To start building with MiniMax M2.1 via AI SDK, set the model to minimax/minimax-m2.1:

    import { streamText } from 'ai';
    const result = streamText({
    model: 'minimax/minimax-m2.1',
    prompt:
    `Initialize a React + TypeScript project of a sunrise.
    Generate assets with an image tool, compute sun position
    with a time tool, animate it, run tests, and produce a build.`
    });

    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

  • GLM-4.7 available on Vercel AI Gateway

    You can now access Z.ai's latest model, GLM-4.7, with Vercel's AI Gateway and no other provider accounts required.

    GLM-4.7 comes with major improvements in coding, tool usage, and multi-step reasoning, especially with complex agentic tasks. The model also has a more natural tone for a better conversational experience and can product a more refined aesthetic for front-end work.

    To start building with GLM-4.7 via AI SDK, set the model to zai/glm-4.7:

    import { streamText } from 'ai';
    const result = streamText({
    model: 'zai/glm-4.7',
    prompt:
    `Create an interactive weather timeline app, fetch forecasts
    via weather tool, normalize data, render animated charts,
    cache results, and produce a production build.`
    });

    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

  • 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

    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.