Skip to content

Commit d1d9c6c

Browse files
committed
allowed all origins
1 parent 2d58220 commit d1d9c6c

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

apps/backend/app/__init__.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,7 @@ def create_app() -> FastAPI:
7575

7676
app.add_middleware(
7777
CORSMiddleware,
78-
allow_origins=[
79-
"https://collegepathfinder.vercel.app",
80-
"http://localhost:5173",
81-
"http://localhost:3000",
82-
"https://13.205.81.121"
83-
],
78+
allow_origins=["*"],
8479
allow_credentials=True,
8580
allow_methods=["*"],
8681
allow_headers=["*"],

0 commit comments

Comments
 (0)