Better static files handling on backend, when in dev mode: fetch from vite.

This commit is contained in:
2025-12-04 02:30:02 +00:00
parent b9b1c995f9
commit a6591a1fbb
8 changed files with 65 additions and 20 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ def websocket_error_handler(func):
await ws.send_json(
{
"status": e.status_code,
**authz.auth_error_content(e),
**(await authz.auth_error_content(e)),
}
)
except (ValueError, InvalidAuthenticationResponse) as e: