chore: migrate to Bun, update deps and add Nuxt Fonts

- Replace pnpm with Bun (bun.lock, remove pnpm-lock.yaml)
- Add @nuxt/fonts module and configure Iconify icons
- Add NUXT_OG_IMAGE_SECRET for multi-instance OG image signing
- Update dependencies to latest versions
- Simplify Tailwind font configuration
- Add trustedDependencies and overrides for unhead packages
This commit is contained in:
2026-07-20 03:05:03 +08:00
parent 4408f48cbd
commit 1cf3fce70e
8 changed files with 2886 additions and 14820 deletions

View File

@@ -1,5 +1,9 @@
@import "tailwindcss";
@theme {
--font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}
@layer base {
html {
height: 100%;
@@ -19,7 +23,7 @@
margin: 0;
min-height: 100%;
background: radial-gradient(circle at 20% 20%, #1b2b4b, #0f1629);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}