19 lines
428 B
Python
19 lines
428 B
Python
"""
|
|
CORS Configuration
|
|
"""
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from backend.app.core.config import settings
|
|
|
|
|
|
def setup_cors(app):
|
|
"""Configure CORS middleware for the FastAPI application"""
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.cors_origins,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|