Return 204 without using bundled request

Is there any way to make a specific path return a 204 without using up bundled requests?

this is my current solution as a function:
export function onRequest(context) {
  return new Response(null, {
    status: 204,
  });
}
Was this page helpful?