Spaces:
Running
Running
fix: revert font loading to CDN (clean state)
Browse filesLocal font approach broke HF pushes (binary files rejected).
CDN has CORS * confirmed β fonts load cross-origin fine.
Correct Anthropic Mono URL (69971a2e...) in place.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- .gitignore +2 -0
- ui/src/index.css +3 -3
.gitignore
CHANGED
|
@@ -12,3 +12,5 @@ dist/
|
|
| 12 |
build/
|
| 13 |
*.egg-info/
|
| 14 |
.DS_Store
|
|
|
|
|
|
|
|
|
| 12 |
build/
|
| 13 |
*.egg-info/
|
| 14 |
.DS_Store
|
| 15 |
+
.vercel
|
| 16 |
+
ui/public/fonts/
|
ui/src/index.css
CHANGED
|
@@ -10,21 +10,21 @@
|
|
| 10 |
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
|
| 11 |
@font-face {
|
| 12 |
font-family: "Anthropic Sans";
|
| 13 |
-
src: url(/
|
| 14 |
font-weight: 300 800;
|
| 15 |
font-style: normal;
|
| 16 |
font-display: swap;
|
| 17 |
}
|
| 18 |
@font-face {
|
| 19 |
font-family: "Anthropic Sans";
|
| 20 |
-
src: url(/
|
| 21 |
font-weight: 300 800;
|
| 22 |
font-style: italic;
|
| 23 |
font-display: swap;
|
| 24 |
}
|
| 25 |
@font-face {
|
| 26 |
font-family: "Anthropic Mono";
|
| 27 |
-
src: url(/
|
| 28 |
font-weight: 300 800;
|
| 29 |
font-style: normal;
|
| 30 |
font-display: swap;
|
|
|
|
| 10 |
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ */
|
| 11 |
@font-face {
|
| 12 |
font-family: "Anthropic Sans";
|
| 13 |
+
src: url(https://cdn.prod.website-files.com/67ce28cfec624e2b733f8a52/69971a00a3295036497e1a28_AnthropicSans-Roman-Web.woff2) format("woff2");
|
| 14 |
font-weight: 300 800;
|
| 15 |
font-style: normal;
|
| 16 |
font-display: swap;
|
| 17 |
}
|
| 18 |
@font-face {
|
| 19 |
font-family: "Anthropic Sans";
|
| 20 |
+
src: url(https://cdn.prod.website-files.com/67ce28cfec624e2b733f8a52/69971a016067bf14b9b8f48d_AnthropicSans-Italic-Web.woff2) format("woff2");
|
| 21 |
font-weight: 300 800;
|
| 22 |
font-style: italic;
|
| 23 |
font-display: swap;
|
| 24 |
}
|
| 25 |
@font-face {
|
| 26 |
font-family: "Anthropic Mono";
|
| 27 |
+
src: url(https://cdn.prod.website-files.com/67ce28cfec624e2b733f8a52/69971a2e55d24d61bc045b1a_AnthropicMono-Roman-Web.woff2) format("woff2");
|
| 28 |
font-weight: 300 800;
|
| 29 |
font-style: normal;
|
| 30 |
font-display: swap;
|