Created
November 10, 2025 23:22
-
-
Save gregsantos/4d941743bd478e9dbec908db3a3c05e0 to your computer and use it in GitHub Desktop.
Nextjs Base URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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