Files
website/apps/docs/utils/metadata.ts
2024-10-27 22:16:31 -06:00

7 lines
204 B
TypeScript

export const baseUrl =
process.env.NODE_ENV === "development"
? "http://localhost:3000"
: "https://docs.dokploy.com";
export const url = (path: string): string => new URL(path, baseUrl).toString();