aboutsummaryrefslogtreecommitdiff
path: root/packages/integrations/vercel/test/fixtures/middleware-without-edge-file/src/middleware.js
blob: 349a0aa79581e550bd923fc5f44aba98f993b381 (plain) (blame)
1
2
3
4
5
6
7
8
/**
 * @type {import("astro").MiddlewareResponseHandler}
 */
export const onRequest = async (context, next) => {
	const test = 'something';
	const response = await next();
	return response;
};