fix(cors): allow all origins

This commit is contained in:
Stan Girard 2023-05-22 15:18:25 +02:00
parent 610778fa25
commit 363528d2ce

View File

@ -35,7 +35,7 @@ app = FastAPI()
origins = [
"http://localhost",
"http://localhost:3000",
"http://localhost:8080",
"*",
]
app.add_middleware(