13 lines
277 B
Python
13 lines
277 B
Python
|
from fastapi.middleware import Middleware
|
||
|
from fastapi.middleware.cors import CORSMiddleware
|
||
|
|
||
|
middlewares = [
|
||
|
Middleware(
|
||
|
CORSMiddleware,
|
||
|
allow_origins=["*"],
|
||
|
allow_credentials=True,
|
||
|
allow_methods=["*"],
|
||
|
allow_headers=["*"],
|
||
|
)
|
||
|
]
|