Vercel Servicesでデプロイ単位はサービスグラフになる

Tech

デプロイ境界は単一frameworkではなくservice graphになります。vercel.jsonがservice、public rewrite、runtime、entrypoint、internal bindingを定義します。

1つのVercel Project内でNext.js frontend、backend、worker、private serviceがrewritesとbindingsで接続される図
Vercel Servicesはpublic rewriteとprivate bindingをサービスグラフとして明示する。

何が起きたか

Vercelは2026年6月30日、Servicesを発表しました。複数のfrontendとbackendを1つのVercel Projectでbuild、preview、rollbackできます。

なぜ重要か

デプロイ境界は単一frameworkではなくservice graphになります。vercel.jsonがservice、public rewrite、runtime、entrypoint、internal bindingを定義します。

コミュニティの兆候

Next.jsコミュニティでは、別backend、timeout、WebSocket、cron、costへの不満が続いています。Servicesはその摩擦を減らしますが、platform集中の懸念も増えます。

実践手順

servicesrewritesbindingsのdiffをレビューし、route順序、preview data、service間auth、internal call fan-outを検証します。

リスク

Bindingはpublic exposureを減らしますがauthorizationではありません。betaとしてlogs、rollback、local dev、costを本番前にリハーサルすべきです。

Servicesチェックリスト

Vercelは2026年6月30日、Servicesを発表しました。複数のfrontendとbackendを1つのVercel Projectでbuild、preview、rollbackできます。

servicesrewritesbindingsのdiffをレビューし、route順序、preview data、service間auth、internal call fan-outを検証します。

Bindingはpublic exposureを減らしますがauthorizationではありません。betaとしてlogs、rollback、local dev、costを本番前にリハーサルすべきです。

出典