This commit is contained in:
itqop 2025-12-30 16:42:48 +03:00
parent 5d8fbb801c
commit e94badb075
3 changed files with 4 additions and 2 deletions

View File

@ -34,8 +34,10 @@ app.add_middleware(
CORSMiddleware,
allow_origins=settings.cors_origins_list,
allow_credentials=True,
allow_methods=["*"],
allow_methods=["GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH"],
allow_headers=["*"],
expose_headers=["*"],
max_age=3600,
)
# Include routers

View File

@ -2,7 +2,7 @@
<html lang="ru">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Облачное хранилище фото и видео" />
<title>ITCloud - Облачное хранилище</title>

BIN
frontend/public/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 KiB