1
0
mirror of https://github.com/avinal/avinal.github.io.git synced 2026-07-03 23:30:09 +05:30

switch to self-hosted Iosevka fonts, enable prefetch

Assisted by Claude Code

Signed-off-by: Avinal Kumar <avinal.xlvii@gmail.com>
This commit is contained in:
2026-05-19 12:04:05 +05:30
parent f03f57f064
commit df4f2e3863
5 changed files with 32 additions and 6 deletions
+1
View File
@@ -8,6 +8,7 @@ export default defineConfig({
site: "https://avinal.space", site: "https://avinal.space",
output: "static", output: "static",
integrations: [sitemap()], integrations: [sitemap()],
prefetch: true,
markdown: { markdown: {
shikiConfig: { shikiConfig: {
theme: "github-dark-default", theme: "github-dark-default",
+20
View File
@@ -11,6 +11,8 @@
"dependencies": { "dependencies": {
"@astrojs/rss": "^4.0.15", "@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0", "@astrojs/sitemap": "^3.7.0",
"@fontsource/iosevka": "^5.2.5",
"@fontsource/iosevka-aile": "^5.2.5",
"astro": "^5.17.3", "astro": "^5.17.3",
"rehype-autolink-headings": "^7.1.0", "rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0", "rehype-slug": "^6.0.0",
@@ -593,6 +595,24 @@
"node": ">=18" "node": ">=18"
} }
}, },
"node_modules/@fontsource/iosevka": {
"version": "5.2.5",
"resolved": "https://registry.npmjs.org/@fontsource/iosevka/-/iosevka-5.2.5.tgz",
"integrity": "sha512-Zv/UHJodDug1LcnWv2u2+GPp3oWP3U6Xp16cJOsqqZQNsCu8sA/ttT331N0NypxBZ+7c8szlSRlYDcy9liZ8pw==",
"license": "OFL-1.1",
"funding": {
"url": "https://github.com/sponsors/ayuhito"
}
},
"node_modules/@fontsource/iosevka-aile": {
"version": "5.2.5",
"resolved": "https://registry.npmjs.org/@fontsource/iosevka-aile/-/iosevka-aile-5.2.5.tgz",
"integrity": "sha512-K9EwsSxfWPWjvrYM+NkgHaImpHgaVgC67l6uWf6W+4taeca6LKMJn/U11mQiRwLlecoI0PP2Q9o/8iIPaLOSgg==",
"license": "OFL-1.1",
"funding": {
"url": "https://github.com/sponsors/ayuhito"
}
},
"node_modules/@img/colour": { "node_modules/@img/colour": {
"version": "1.0.0", "version": "1.0.0",
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz", "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
+2
View File
@@ -23,6 +23,8 @@
"dependencies": { "dependencies": {
"@astrojs/rss": "^4.0.15", "@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0", "@astrojs/sitemap": "^3.7.0",
"@fontsource/iosevka": "^5.2.5",
"@fontsource/iosevka-aile": "^5.2.5",
"astro": "^5.17.3", "astro": "^5.17.3",
"rehype-autolink-headings": "^7.1.0", "rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0", "rehype-slug": "^6.0.0",
+2 -2
View File
@@ -107,8 +107,8 @@ const theme: ThemeConfig = {
}, },
fonts: { fonts: {
sans: '"Inter", "Segoe UI", system-ui, -apple-system, sans-serif', sans: '"Iosevka Aile", system-ui, sans-serif',
mono: '"JetBrains Mono", "Fira Code", ui-monospace, monospace', mono: '"Iosevka", ui-monospace, monospace',
}, },
colors: { colors: {
+7 -4
View File
@@ -3,6 +3,13 @@ import Nav from "@/components/Nav.astro";
import Footer from "@/components/Footer.astro"; import Footer from "@/components/Footer.astro";
import theme, { generateThemeCSS } from "@/config/theme"; import theme, { generateThemeCSS } from "@/config/theme";
import "@/styles/global.css"; import "@/styles/global.css";
import "@fontsource/iosevka-aile/400.css";
import "@fontsource/iosevka-aile/500.css";
import "@fontsource/iosevka-aile/600.css";
import "@fontsource/iosevka-aile/700.css";
import "@fontsource/iosevka-aile/800.css";
import "@fontsource/iosevka/400.css";
import "@fontsource/iosevka/500.css";
interface Props { interface Props {
title: string; title: string;
@@ -56,10 +63,6 @@ const resolvedOgImage = ogImage || new URL("/og-default.svg", Astro.site).href;
<link rel="sitemap" href="/sitemap-index.xml" /> <link rel="sitemap" href="/sitemap-index.xml" />
<link rel="alternate" type="application/rss+xml" title="Avinal Kumar" href="/rss.xml" /> <link rel="alternate" type="application/rss+xml" title="Avinal Kumar" href="/rss.xml" />
<!-- Font preloads -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
<!-- Design tokens generated from theme config --> <!-- Design tokens generated from theme config -->
<style set:html={themeCSS} /> <style set:html={themeCSS} />