From 2ec978ed0d231429cc3a25914aedd1d00fded97b Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Tue, 24 Sep 2024 18:02:23 +0200 Subject: [PATCH] docs(getting-started): use `Public sans` to prevent bundle of `Inter` --- docs/content/1.getting-started/3.theme.md | 2 +- docs/content/1.getting-started/6.fonts.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/1.getting-started/3.theme.md b/docs/content/1.getting-started/3.theme.md index be20cb14..25b548d6 100644 --- a/docs/content/1.getting-started/3.theme.md +++ b/docs/content/1.getting-started/3.theme.md @@ -13,7 +13,7 @@ Tailwind CSS v4 takes a CSS-first configuration approach, you now customize your @import "@nuxt/ui"; @theme { - --font-family-display: "Inter", "sans-serif"; + --font-family-sans: 'Public Sans', sans-serif; --breakpoint-3xl: 1920px; diff --git a/docs/content/1.getting-started/6.fonts.md b/docs/content/1.getting-started/6.fonts.md index 4f9ccc63..7bfa72b6 100644 --- a/docs/content/1.getting-started/6.fonts.md +++ b/docs/content/1.getting-started/6.fonts.md @@ -19,7 +19,7 @@ Nuxt UI automatically registers the `@nuxt/fonts` module for you, so there's no @import "@nuxt/ui"; @theme { - --font-family-sans: Inter, sans-serif; + --font-family-sans: 'Public Sans', sans-serif; } ``` @@ -29,7 +29,7 @@ Nuxt UI automatically registers the `@nuxt/fonts` module for you, so there's no @import "@nuxt/ui"; @theme { - --font-family-sans: Inter, sans-serif; + --font-family-sans: 'Public Sans', sans-serif; } ```