I'm migrating a Nuxt 2 to Nuxt 3 application and I need to add an header to the responses that arrive to a specific page. While I'm aware on how to add named route middleware in Vue components, I'm not finding the way of editing the headers using the 'from' and 'to' parameters.
Moreover, I've read that this can be done with server middleware (inside server folder) but at the same time, all the server middleware is applied to all the requests, which is not the desired behavior here.
Any idea on how to solve this?
Thank you very much,