mirror of
https://github.com/Dokploy/website
synced 2025-06-26 18:16:01 +00:00
7 lines
204 B
TypeScript
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();
|