Ver código fonte

CORS FIX 2

main
Madiwka 1 ano atrás
pai
commit
e8d5be8ff0
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      app/main.py

+ 1
- 1
app/main.py Ver arquivo

@@ -22,7 +22,7 @@ def startup(): # start the project, and create the tables

origins = ["*"]
app = startup()
app.add_middleware(CORSMiddleware, allow_origins=origins, allow_credentials=True, allow_methods=["*"], allow_headers=["*"])
app.add_middleware(CORSMiddleware, allow_origins=origins, allow_credentials=True, allow_methods=["*"], allow_headers=["*"], expose_headers=["*"])

# Testing stuff
@app.get("/")


Carregando…
Cancelar
Salvar