codesandbox-client / packages /common /src /utils /feature-flags.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
84c1942 verified
Raw
History Blame Contribute Delete
240 Bytes
/**
poor man's feature flags
you can export a constant which enables/disables a feature
it's a TS file, so you can add whatever logic you want as long as it's static
*/
export const PREVIEW_COMMENTS_ON = 'CSB_PREVIEW_COMMENTS_ON';