소스 검색

fix(backend): add localhost:8001 to CORS origins for prerendering

unknown 3 달 전
부모
커밋
f493304d75
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      backend/main.py

+ 1 - 0
backend/main.py

@@ -29,6 +29,7 @@ origins = [
     "http://localhost:5173",
     "http://127.0.0.1:5173",
     "http://localhost:5000",
+    "http://localhost:8001",
     "https://radionica3d.me",
 ]
 extra_origins = os.getenv("CORS_ORIGINS")