diff --git a/src/routes/+layout.server.ts b/src/routes/+layout.server.ts index af9cd26..33ae20f 100644 --- a/src/routes/+layout.server.ts +++ b/src/routes/+layout.server.ts @@ -1,7 +1,6 @@ -import { PUBLIC_YOUR_DOMAIN } from '$env/static/public'; import type { ServerLoad } from '@sveltejs/kit'; import { redirect } from '@sveltejs/kit'; export const load: ServerLoad = async () => { - throw redirect(307, PUBLIC_YOUR_DOMAIN); + throw redirect(307, 'https://realgolf.games'); };