mirror of
https://github.com/devproje/balance-application.git
synced 2024-10-20 15:11:21 +00:00
fix: CORS ISSUE
This commit is contained in:
parent
ed35341316
commit
ff65e414f7
1 changed files with 1 additions and 1 deletions
2
app.py
2
app.py
|
@ -9,7 +9,7 @@ app.add_middleware(
|
|||
CORSMiddleware,
|
||||
allow_origins=["*"],
|
||||
allow_credentials=True,
|
||||
allow_methods=["POST, GET, PATCH, DELETE"],
|
||||
allow_methods=["*"],
|
||||
allow_headers=["*"]
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue