docs(getting-started): use Public sans to prevent bundle of Inter

This commit is contained in:
Benjamin Canac
2024-09-24 18:02:23 +02:00
parent b7f9422091
commit 2ec978ed0d
2 changed files with 3 additions and 3 deletions

View File

@@ -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;

View File

@@ -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;
}
</style>
```
@@ -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;
}
```