feat: env for support email (#1945)

Add the ability to change the support email. For the signature
disclosure page.
This commit is contained in:
Novapixel1010
2025-08-06 18:39:03 -06:00
committed by GitHub
parent 2ee0d77870
commit f24b71f559

View File

@ -13,4 +13,4 @@ export const IS_BILLING_ENABLED = () => env('NEXT_PUBLIC_FEATURE_BILLING_ENABLED
export const API_V2_BETA_URL = '/api/v2-beta';
export const SUPPORT_EMAIL = 'support@documenso.com';
export const SUPPORT_EMAIL = env('NEXT_PUBLIC_SUPPORT_EMAIL') ?? 'support@documenso.com';