Further billing

This commit is contained in:
Owen
2026-02-08 11:08:23 -08:00
committed by Owen Schwartz
parent 4f2fd98700
commit 2829a14150
4 changed files with 269 additions and 60 deletions

View File

@@ -23,7 +23,7 @@ export const freeLimitSet: LimitSet = {
description: "Free tier limit"
}, // 25 GB
[FeatureId.DOMAINS]: { value: 3, description: "Free tier limit" },
[FeatureId.REMOTE_EXIT_NODES]: { value: 1, description: "Free tier limit" }
[FeatureId.REMOTE_EXIT_NODES]: { value: 0, description: "Free tier limit" }
};
export const homeLabLimitSet: LimitSet = {

View File

@@ -33,9 +33,7 @@ interface StripeEvent {
export function noop() {
if (
build !== "saas" ||
!process.env.S3_BUCKET ||
!process.env.LOCAL_FILE_PATH
build !== "saas"
) {
return true;
}