瀏覽代碼

CORS FIX 2

main
Madiwka 1 年之前
父節點
當前提交
e8d5be8ff0
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      app/main.py

+ 1
- 1
app/main.py 查看文件

@@ -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("/")


Loading…
取消
儲存