const customerPortalTestUrl = 'https//billing.stripe.com/p/login/test_...'const customerPortalProdUrl = undefinedexport const STRIPE_CUSTOMER_PORTAL_LINK = isDev ? customerPortalTestUrl : customerPortalProdUrl;checkStripePortalLinkExists(STRIPE_CUSTOMER_PORTAL_LINK); // throws an error if the link is not set in production
const customerPortalTestUrl = 'https//billing.stripe.com/p/login/test_...'const customerPortalProdUrl = undefinedexport const STRIPE_CUSTOMER_PORTAL_LINK = isDev ? customerPortalTestUrl : customerPortalProdUrl;checkStripePortalLinkExists(STRIPE_CUSTOMER_PORTAL_LINK); // throws an error if the link is not set in production
isDev and checkStripePortalLinkExists are not defined and throw an error.