Site/Game for Harvest Hackathon Haunted House.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 409 B view raw
1import type { Handle } from '@sveltejs/kit'; 2import { COUNTRY_HEADER, CITY_HEADER } from './lib/constants'; 3import { dev } from '$app/environment'; 4 5export const handle: Handle = async function ({ event, resolve }) { 6 if (dev) { 7 event.request.headers.append(CITY_HEADER, 'SECRET VILLAGE'); 8 event.request.headers.append(COUNTRY_HEADER, 'US'); 9 } 10 const response = await resolve(event); 11 return response; 12};