1 2 3 4 5 6 7 8 9
/** * @type {import("astro").MiddlewareResponseHandler} */ export const onRequest = async (context, next) => { const test = 'something'; context.cookies.set('foo', 'bar'); const response = await next(); return response; };