1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-28 09:20:52 +01:00
upscayl/common/feature-flags.ts

10 lines
196 B
TypeScript
Raw Normal View History

2023-10-25 13:44:22 +02:00
type FeatureFlags = {
APP_STORE_BUILD: boolean;
2023-11-02 16:03:21 +01:00
SHOW_UPSCAYL_CLOUD_INFO: boolean;
2023-10-25 13:44:22 +02:00
};
export const featureFlags: FeatureFlags = {
2023-11-02 16:03:21 +01:00
APP_STORE_BUILD: true,
SHOW_UPSCAYL_CLOUD_INFO: false,
2023-10-25 13:44:22 +02:00
};