Haskell newbie here!
In my haskell side project, I am using scotty to serve some dynamically generated html pages. The problem is that the pages can not be opened inside an iframe, due to the "x-frame-options" header set to "SAMEORIGIN".
How can I change that header to something different? I'd like to set that header for all responses. Is there a Middleware that can do that?
Thanks!