diff --git a/lib/handler.go b/lib/handler.go index d671cd2..bc572cc 100644 --- a/lib/handler.go +++ b/lib/handler.go @@ -63,6 +63,7 @@ func NewHandler(c *Config) (http.Handler, error) { AllowedOrigins: c.CORS.AllowedHosts, AllowedMethods: c.CORS.AllowedMethods, AllowedHeaders: c.CORS.AllowedHeaders, + ExposedHeaders: c.CORS.ExposedHeaders, OptionsPassthrough: false, }).Handler(h), nil }