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