© 2026 Hedgehog Software, LLC
const isDevEnv = process.env.NODE_ENV !== 'production'; const customerPortalTestUrl = 'TEST_URL'; const customerPortalProdUrl = 'PROD_URL'; export const STRIPE_CUSTOMER_PORTAL_LINK = isDevEnv ? customerPortalTestUrl : customerPortalProdUrl;