mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
11 lines
235 B
TypeScript
11 lines
235 B
TypeScript
import { flag } from '@vercel/flags/next';
|
|
|
|
export const deliveryTimeFlag = flag({
|
|
key: 'show-delivery-time',
|
|
// defaultValue: false,
|
|
// options: [{ value: false }, { value: true }],
|
|
async decide() {
|
|
return false;
|
|
},
|
|
});
|