feat: expand cors

This commit is contained in:
2025-06-24 22:25:38 -04:00
parent afe6c08101
commit 873c9ba0b2
+8 -1
View File
@@ -14,7 +14,14 @@ app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:3000", "https://localhost:3000"],
allow_origins=[
"http://localhost:3000",
"http://192.168.125.129:3000",
"https://192.168.125.129:3000",
"http://192.168.125.129:8000",
"https://192.168.125.129:8000",
"https://site.muszyn.dev",
],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],