elysiajs / elysia-html

A plugin for Elysia that add support for returning html
MIT License
24 stars 19 forks source link

Using the plugin removes access to query/cookies/headers in route handlers #89

Open pocorschi opened 4 months ago

pocorschi commented 4 months ago

before .use(html())

GET "/test?type=abc ... query : { type: "abc" } after adding .use(html()) GET "/test?type=abc ... query : { headers: undefined }