mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 21:07:46 +00:00
Adds initial support for a root-level `middleware.js` / `middleware.ts` file in the `vercel dev` CLI command. This leverages the existing Edge Function invoking logic in `@vercel/node`'s `startDevServer()` function and applies the necessary response / rewrites / mutations to the HTTP request based on the result of the middleware invocation.
7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
export default () =>
|
|
new Response(null, {
|
|
headers: {
|
|
'x-middleware-rewrite': '/api/fn?from-middleware=true',
|
|
},
|
|
});
|