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

This commit is contained in:
Leo Vasanko
2025-12-03 14:30:02 -06:00
parent 9488f69e53
commit ad63d3fb3a
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: