diff options
Diffstat (limited to 'src/utils.ts')
-rw-r--r-- | src/utils.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils.ts b/src/utils.ts new file mode 100644 index 000000000..cbe38f5f3 --- /dev/null +++ b/src/utils.ts @@ -0,0 +1,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; |