a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add some logging

+1
+1
src/utils/isProductionDeployment.ts
··· 1 1 export function isProductionDomain() { 2 2 let vercel_env = process.env.NEXT_PUBLIC_VERCEL_ENV || process.env.VERCEL_ENV; 3 + console.log({ vercel_env }); 3 4 return process.env.NODE_ENV === "production" && vercel_env === "production"; 4 5 }