Skip to content
Read the Vercel Storage announcement

Serverless storage designed for the web

Accelerate your Vercel Workflow with databases optimized for the fastest frontends

Edge-optimized for instant experimentation

Globally distributed data colocated with your compute. Run A/B testing, feature flags, dynamic redirects, and more without any additional network requests for near-instant reads.

An illustration of a file explorer window with a left curly brace, semicolon, and right curly brace inside. They are surrounded by a square with rounded corners and a dashed outline.An illustration of a file explorer window with a left curly brace, semicolon, and right curly brace inside. They are surrounded by a square with rounded corners and a dashed outline.

Built for modern web frameworks

Designed for the next evolution of JavaScript and TypeScript frameworks for easy, near-instant config reads.
middleware.ts
import { NextResponse, NextRequest } from "next/server";
import { get } from "@vercel/edge-config";
export async function middleware(request: NextRequest) {
if (await get("showNewDashboard")) {
return NextResponse.rewrite(new URL("/new-dashboard", request.url));
}
}

Actively replicated, edge-first

Writes happen edge-first by default, without redeploying your application. Your data is available—alongside your functions–for the lowest possible latency.

Config data at every edge

As config data changes, it gets actively pushed to every region without needing to redeploy your application.

Ready for the edge

For low-latency, high-throughput reads and writes, designed to work natively with Vercel's compute products.

No management required

No setup required. Spend your time building your application, not managing database instances.

Effortless scaling

Built to handle the unpredictable nature of web traffic, scaling up and down as needed.

Get started with Edge Config on Vercel

Deploy a template that uses Edge Config and start reading and writing data in minutes.

Feature Flags with Edge Config

This template uses Edge Config as fast storage to control whether a store is open or closed.


Logo for Next.js

Built with Next.js

Fast experimentation with Statsig

Reduce CLS and improve performance from client-loaded experiments at the edge with Statsig and Edge Config.


Logo for Next.js

Built with Next.js

LaunchDarkly with Edge Config

Learn how to set up the LaunchDarkly integration to read flags from Edge Config


Logo for Next.js

Built with Next.js