blob: a69755e5691cc4df1be7bf16d93b3af3e0f303e7 (
plain) (
blame)
1
2
3
4
5
6
|
import { appOrigin, LOCAL_ORIGIN } from "$lib/Utility/appOrigin";
export const root = (path: string, enable = false) =>
`${enable ? LOCAL_ORIGIN : appOrigin()}${path}`;
export default root;
|