summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudomator Agent <agent@claudomator.local>2026-03-26 09:29:30 +0000
committerClaudomator Agent <agent@claudomator.local>2026-03-26 09:29:30 +0000
commit7764f8697a14c4aa0e4b6ba6e669a504dda598b2 (patch)
treec9105a0f22c5d4ff06d6413570a62c03c8313632
parenta2ce10230cbb90be74383c1fb334a463bad41c37 (diff)
style: add font preconnect hints to index.html
Add <link rel="preconnect"> hints for fonts.googleapis.com and fonts.gstatic.com before the stylesheet link to improve font load performance. No inline color/font/background overrides were found to remove. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
-rw-r--r--web/index.html2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 53fbf3c..676b869 100644
--- a/web/index.html
+++ b/web/index.html
@@ -5,6 +5,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Claudomator</title>
<meta name="base-path" content="/claudomator">
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="data:,">
</head>