Include params from Astro request

This commit is contained in:
Sam Carlton 2022-06-11 19:38:37 -05:00
parent d2f86aba5f
commit 59ff41a3f6

View file

@ -86,6 +86,7 @@ export function getPathPartsFromAstroRequest ( AstroRequest ) {
pathname: url.pathname,
routeType,
pathSlug,
subSlug
subSlug,
params: Object.fromEntries( url.searchParams )
}
}