apipeline icon indicating copy to clipboard operation
apipeline copied to clipboard

Impossible to add data in body in middleware.

Open Villar74 opened this issue 6 years ago • 0 comments

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
  }
}

Villar74 avatar Aug 07 '19 14:08 Villar74