Skip to content

Instantly share code, notes, and snippets.

@gregsantos
Created November 10, 2025 23:22
Show Gist options
  • Select an option

  • Save gregsantos/4d941743bd478e9dbec908db3a3c05e0 to your computer and use it in GitHub Desktop.

Select an option

Save gregsantos/4d941743bd478e9dbec908db3a3c05e0 to your computer and use it in GitHub Desktop.
Nextjs Base URL
export const baseURL =
process.env.NODE_ENV == "development"
? "http://localhost:3000"
: "https://" +
(process.env.VERCEL_ENV === "production"
? process.env.VERCEL_PROJECT_PRODUCTION_URL
: process.env.VERCEL_BRANCH_URL || process.env.VERCEL_URL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment