apipeline
apipeline copied to clipboard
Impossible to add data in body in middleware.
I want to add some fields in body by middleware to each request, but merger ignores new body
export default async function middleware() {
return {
body: 'exampleText',
};
// I tried return { fetchOptions: { body: 'exampleBody'}} also
}
}