mirror of
https://github.com/openswarm-ai/openswarm.git
synced 2026-09-14 05:37:40 +02:00
only load when you click into them, Settings pre-loads in the background so opening it stays instant), added a safety net that shows a friendly error card instead of blacking out the whole app, and stopped a few dashboard lists from needlessly rebuilding on every chat update.
19 lines
791 B
HTML
19 lines
791 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Open Swarm</title>
|
|
<link rel="icon" href="./favicon.ico?v=2" sizes="16x16 32x32 48x48" />
|
|
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
|
|
<!-- Warm sockets to the few external endpoints we hit on first paint. -->
|
|
<link rel="preconnect" href="https://api.openswarm.com" crossorigin />
|
|
<link rel="dns-prefetch" href="https://api.openswarm.com" />
|
|
<link rel="dns-prefetch" href="https://api.github.com" />
|
|
<link rel="dns-prefetch" href="https://fonts.googleapis.com" />
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
</body>
|
|
</html> |