astro/packages/integrations/vercel/test/fixtures/middleware-without-edge-file/src/middleware.js
2023-07-12 08:06:08 +01:00

8 lines
193 B
JavaScript

/**
* @type {import("astro").MiddlewareResponseHandler}
*/
export const onRequest = async (context, next) => {
const test = 'something';
const response = await next();
return response;
};