Skip to content
Dashboard

SvelteKit now supported in @vercel/flags

Software Engineer
import { flag } from '@vercel/flags/sveltekit'
export const showDashboard = flag<boolean>({
key: 'dashboard',
async decide () {
// your feature flag logic
return true
}
})