惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
Vercel News
Vercel News
Last Week in AI
Last Week in AI
罗磊的独立博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
IT之家
IT之家
美团技术团队
U
Unit 42
Google DeepMind News
Google DeepMind News
P
Proofpoint News Feed
J
Java Code Geeks
V
V2EX
量子位
腾讯CDC
S
SegmentFault 最新的问题
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
D
DataBreaches.Net
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 聂微东
L
LangChain Blog
C
Check Point Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
Introducing Vercel for Platforms - Vercel
Authors · 2025-12-05 · via Vercel News

You can now build platforms with the new Vercel for Platforms product announced today, making it easy to create and run customer projects on behalf of your users.

Two platform modes are available: Multi-Tenant and Multi-Project, allowing you to deploy with a single codebase or many, across any number of domains.

Link to headingMulti-Tenant Platforms

Run a single codebase that serves many customers with:

  • Wildcard domains (*.yourapp.com) with automatic routing and SSL.

  • Custom domain support via SDK, including DNS verification and certificate management.

  • Routing Middleware for hostname parsing and customer resolution at the edge.

  • Single deployment model: deploy once, changes apply to all tenants.

Add custom domains to your app in seconds:

import {

addDomain,

getDomainStatus,

} from "@/components/vercel-platform/src/actions/add-custom-domain";

const added = await addDomain("test.com");

if (added.status === "Valid Configuration") {

// do something

}

const config = await getDomainStatus("test.com");

config.dnsRecordsToSet; // show this in a table

Link to headingMulti-Project Platforms

Create a separate Vercel project per customer with:

  • Programmatic project creation with the Vercel SDK.

  • Isolation of builds, functions, environment variables, and settings per customer.

  • Support for different frameworks per project.

Deploy your customer's code into isolated projects in seconds:

import { deployFiles } from "@/components/vercel-platform/actions/deploy-files";

// automatically detects the framework & build commands

await deployFiles([], {

// optionally assign a custom domian

domain: "site.myapp.com",

});

Today we are also introducing Platform Elements, a new library to make building on platforms easier.

Start building with our Quickstart for Multi-Tenant or Multi-Project platform.