Accelerate your Vercel Workflow with databases optimized for the fastest frontends
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.
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)); }}
Writes happen edge-first by default, without redeploying your application. Your data is available—alongside your functions–for the lowest possible latency.
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.
Feature Flags with Edge Config
This template uses Edge Config as fast storage to control whether a store is open or closed.
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.
Built with Next.js