1export const getBaseUrl = () => { 2 return process.env.NEXT_PUBLIC_BASE_URL ?? "http://localhost:3000"; 3}; 4 5export const getCanonicalUrl = (...pages: string[]) => { 6 return `${getBaseUrl()}/${pages.join("/")}`; 7};