소스 검색

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


불러오는 중...
취소
저장