I have a strange error. If i dont enable cors i.e ...
# ktor
f
I have a strange error. If i dont enable cors i.e doing this
Copy code
install(CORS) {
   host("localhost:8080")
   method(HttpMethod.Put)
   method(HttpMethod.Delete)
}
Everything works fine with my self hosted SPA that uses relative paths, but as soon as I enable CORS, the SPA that is hosted as a static resource gets 403 on every request, is that a bug?