your personal website on atproto - mirror blento.app

remove some logs

-3
-2
src/routes/+layout.server.ts
··· 1 1 export async function load({ request }) { 2 2 const customDomain = request.headers.get('X-Custom-Domain')?.toLowerCase(); 3 3 4 - console.log('domain:', customDomain); 5 - 6 4 return { customDomain }; 7 5 }
-1
src/routes/+layout.svelte
··· 17 17 }; 18 18 19 19 onMount(() => { 20 - console.log(data.customDomain); 21 20 initClient({ customDomain: data.customDomain }); 22 21 23 22 const error = page.url.searchParams.get('error');