The header social link used Starlight's generic `code-branch` icon. Wires up starlight-plugin-icons + UnoCSS (Iconify) and overrides SocialIcons to render `pajamas:gitea` for the Gitea link instead, while falling back to Starlight's default icon set for anything else. Sidebar and codeblock icon support are enabled but unused for now.
7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { defineConfig } from 'unocss';
|
|
import { presetStarlightIcons } from 'starlight-plugin-icons/uno';
|
|
|
|
export default defineConfig({
|
|
presets: [presetStarlightIcons()],
|
|
});
|