import { resolveLocationFromRoute } from '$lib/utils/location'; import type { PageLoad } from './$types'; export const load: PageLoad = async (event) => { const location = await resolveLocationFromRoute({ urlLocation: event.params.location, routePrefix: '/weather/14-day/', event }); return { location }; };