Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

Vercel Flags is now in public beta - Vercel

Vercel News·Dominik Ferber·4 days ago
#Je3zMvdk
#vercel#flags#feature#flag#openfeature#photo
Reading 0:00
15s threshold

Vercel Flags is a feature flag provider built into the Vercel platform. It lets you create and manage feature flags with targeting rules, user segments, and environment controls directly in the Vercel Dashboard. The Flags SDK provides a framework-native way to define and use these flags within Next.js and SvelteKit applications, integrating directly with your existing codebase: import { vercelAdapter } from "@flags-sdk/vercel" import { flag } from 'flags/next' ; export const showNewFeature = flag ( { key : 'show-new-feature' , decide : ( ) => false , description : 'Show the new dashboard redesign' , adapter : vercelAdapter ( ) } ) ; And you can use them within your pages like: import { showNewFeature } from "~/flags" export default async function Page ( ) { const isEnabled = await showNewFeature ( ) return isEnabled ?…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More