Skip to content

Commit

Permalink
fix cors for office scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Sep 13, 2024
1 parent 264451b commit ede84f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
app=app,
allow_origins=settings.cors_allow_origins,
allow_methods=["POST"],
allow_headers=["*"],
allow_credentials=False,
)
main_app = cors_app

Expand Down

0 comments on commit ede84f1

Please sign in to comment.