fix cors
This commit is contained in:
parent
ed5f50183a
commit
85ee4589d4
@ -75,6 +75,8 @@ async fn main() {
|
||||
// Create CORS midleware to allow the web build of the UI to work.
|
||||
let cors = CorsLayer::new()
|
||||
.allow_methods(cors::Any)
|
||||
.allow_credentials(true)
|
||||
.allow_headers(cors::Any)
|
||||
.allow_origin(cors::Any);
|
||||
|
||||
let app = app.layer(cors);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user