fix(backend): fixed cors

This commit is contained in:
Alex Wellnitz 2024-09-21 16:05:42 +02:00
parent 1b51ea41fb
commit 7632cf4104

View File

@ -31,10 +31,10 @@ app = FastAPI(
origins = [ origins = [
"http://localhost", "http://localhost",
"http://localhost:3000", "http://localhost:3000",
"http://localhost:8000", "http://localhost:8000/*",
"http://127.0.0.1", "http://127.0.0.1",
"http://127.0.0.1:3000", "http://127.0.0.1:3000",
"http://127.0.0.1:8000", "http://127.0.0.1:8000/*",
"https://sim-free.dev-null.rocks", "https://sim-free.dev-null.rocks",
] ]