a tool for shared writing and social publishing
at 67e93ac8b4f2571dbefaba9f3f0bdcf96d3eb8dd 4 lines 201 B view raw
1export function isProductionDomain() { 2 let vercel_env = process.env.NEXT_PUBLIC_VERCEL_ENV || process.env.VERCEL_ENV; 3 return process.env.NODE_ENV === "production" && vercel_env === "production"; 4}