Fix CORS setup
AnyHost * is not allowed in combination with Allow-Credentials, see https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors/CORSNotSupportingCredentials
This commit is contained in:
parent
b6ccae2abe
commit
04842b6dba
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ fun Application.moduleWithDependencies(
|
|||
})
|
||||
}
|
||||
install(CORS) {
|
||||
anyHost()
|
||||
host("twigs.wbrawner.com") // TODO: Make configurable
|
||||
method(HttpMethod.Options)
|
||||
method(HttpMethod.Put)
|
||||
method(HttpMethod.Delete)
|
||||
|
|
Loading…
Reference in a new issue