mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
const URL = process.env.VERCEL_URL
|
|
? `https://${process.env.VERCEL_URL}`
|
|
: 'http://localhost:3000'
|
|
|
|
export function getBaseURL(): string {
|
|
return URL
|
|
}
|