Skip to content
Dashboard

Sub-millisecond reads for experiment and feature flag configurations.

Link to headingA unique storage product

Edge Config is amazing. We’ve been hoping for a product like this for a while, and now it’s here! Really excited to see how this plays out with the increased traffic we’ll be seeing over the next few weeks.
John W Software Engineer

Link to headingTools for rapid experimentation

Cumulative Layout Shift for Speedway Motors was reduced by 50%.
Cumulative Layout Shift for Speedway Motors was reduced by 50%.

Link to headingEdge Config API

import { get } from '@vercel/edge-config';
const featureFlagEnabled = await get("featureFlagEnabled")

Get started with Edge Config

import { createClient } from '@vercel/edge-config';
const edgeConfig = createClient(process.env.FEATURE_FLAGS_CONFIG);
const featureFlags = await edgeConfig.getAll(["requireSignup", "showDiscountBanner"]);

Example A/B test using Edge Config