Allow CORS responses to be cached to allow faster initial connection (#1027)

This commit is contained in:
David Zhao
2022-09-20 23:56:24 -07:00
committed by GitHub
parent eabecb99ac
commit feb47812e7

View File

@@ -75,6 +75,8 @@ func NewLivekitServer(conf *config.Config,
return true
},
AllowedHeaders: []string{"*"},
// allow preflight to be cached for a day
MaxAge: 86400,
}),
}
if keyProvider != nil {