1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/common/feature-flags.ts

8 lines
127 B
TypeScript
Raw Normal View History

2023-10-25 13:44:22 +02:00
type FeatureFlags = {
APP_STORE_BUILD: boolean;
};
export const featureFlags: FeatureFlags = {
2023-10-26 10:09:52 +02:00
APP_STORE_BUILD: false,
2023-10-25 13:44:22 +02:00
};