aboutsummaryrefslogtreecommitdiff
path: root/src/utils.ts
blob: cbe38f5f3e46a1fb0eb86b03e312af7d1ab39a26 (plain) (blame)
1
2
3
4
const base = import.meta.env.BASE_URL.replace(/\/$/, '');

/** Prefix a URL path with the site’s base path if set. */
export const withBase = (path: string) => base + path;