blob: 3f9ea07da5e703f274fd838419bf47fcb6713907 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { env } from '$env/dynamic/public';
export const root = (path: string, enable = false) =>
env.PUBLIC_ANILIST_REDIRECT_URI?.includes('localhost') || enable
? `http://localhost:5173${path}`
: `https://due.moe${path}`;
export default root;
|