Lower cloud free website limit to 1

This commit is contained in:
Mike Cao
2026-06-09 14:58:10 -07:00
parent 0c0a3aee65
commit db01e3a1bb
+1 -1
View File
@@ -6,7 +6,7 @@ export interface SubscriptionAccount {
unlimitedWebsites?: boolean | null;
}
export const CLOUD_FREE_WEBSITE_LIMIT = 3;
export const CLOUD_FREE_WEBSITE_LIMIT = 1;
export const CLOUD_PRO_WEBSITE_LIMIT = 20;
export function getCloudWebsiteLimit(account?: SubscriptionAccount | null): number | null {