| --- |
| title: Font Module |
| nav_title: Font |
| description: Optimizing loading web fonts with the built-in `next/font` loaders. |
| --- |
|
|
| {} |
|
|
| [`next/font`](/docs/app/api-reference/components/font) automatically optimizes your fonts (including custom fonts) and removes external network requests for improved privacy and performance. |
|
|
| It includes **built-in automatic self-hosting** for any font file. This means you can optimally load web fonts with no [layout shift](https: |
|
|
| You can also conveniently use all [Google Fonts](https: |
|
|
| <AppOnly> |
|
|
| ```tsx filename="app/layout.tsx" switcher |
| import { Inter } from 'next/font/google' |
|
|
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
|
|
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
|
|
| ```jsx filename="app/layout.js" switcher |
| import { Inter } from 'next/font/google' |
|
|
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
|
|
| export default function RootLayout({ children }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
|
|
| </AppOnly> |
|
|
| <PagesOnly> |
|
|
| To use the font in all your pages, add it to [`_app.js` file](/docs/pages/building-your-application/routing/custom-app) under `/pages` as shown below: |
|
|
| ```jsx filename="pages/_app.js" |
| import { Inter } from 'next/font/google' |
|
|
| |
| const inter = Inter({ subsets: ['latin'] }) |
|
|
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <main className={inter.className}> |
| <Component {...pageProps} /> |
| </main> |
| ) |
| } |
| ``` |
|
|
| </PagesOnly> |
|
|
| > **🎥 Watch:** Learn more about using `next/font` → [YouTube (6 minutes)](https://www.youtube.com/watch?v=L8_98i_bMMA). |
|
|
| ## Reference |
|
|
| | Key | `font/google` | `font/local` | Type | Required | |
| | ------------------------------------------- | ------------------- | ------------------- | -------------------------- | ----------------- | |
| | [`src`](#src) | <Cross size={18} /> | <Check size={18} /> | String or Array of Objects | Yes | |
| | [`weight`](#weight) | <Check size={18} /> | <Check size={18} /> | String or Array | Required/Optional | |
| | [`style`](#style) | <Check size={18} /> | <Check size={18} /> | String or Array | - | |
| | [`subsets`](#subsets) | <Check size={18} /> | <Cross size={18} /> | Array of Strings | - | |
| | [`axes`](#axes) | <Check size={18} /> | <Cross size={18} /> | Array of Strings | - | |
| | [`display`](#display) | <Check size={18} /> | <Check size={18} /> | String | - | |
| | [`preload`](#preload) | <Check size={18} /> | <Check size={18} /> | Boolean | - | |
| | [`fallback`](#fallback) | <Check size={18} /> | <Check size={18} /> | Array of Strings | - | |
| | [`adjustFontFallback`](#adjustfontfallback) | <Check size={18} /> | <Check size={18} /> | Boolean or String | - | |
| | [`variable`](#variable) | <Check size={18} /> | <Check size={18} /> | String | - | |
| | [`declarations`](#declarations) | <Cross size={18} /> | <Check size={18} /> | Array of Objects | - | |
|
|
| ### `src` |
|
|
| The path of the font file as a string or an array of objects (with type `Array<{path: string, weight?: string, style?: string}>`) relative to the directory where the font loader function is called. |
|
|
| Used in `next/font/local` |
|
|
| - Required |
|
|
| Examples: |
|
|
| - `src:'./fonts/my-font.woff2'` where `my-font.woff2` is placed in a directory named `fonts` inside the `app` directory |
| - `src:[{path: './inter/Inter-Thin.ttf', weight: '100',},{path: './inter/Inter-Regular.ttf',weight: '400',},{path: './inter/Inter-Bold-Italic.ttf', weight: '700',style: 'italic',},]` |
| - if the font loader function is called in `app/page.tsx` using `src:'../styles/fonts/my-font.ttf'`, then `my-font.ttf` is placed in `styles/fonts` at the root of the project |
| |
| ### `weight` |
| |
| The font [`weight`](https://fonts.google.com/knowledge/glossary/weight) with the following possibilities: |
| |
| - A string with possible values of the weights available for the specific font or a range of values if it's a [variable](https: |
| - An array of weight values if the font is not a [variable google font](https: |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Required if the font being used is **not** [variable](https: |
|
|
| Examples: |
|
|
| - `weight: '400'`: A string for a single weight value - for the font [`Inter`](https: |
| - `weight: '100 900'`: A string for the range between `100` and `900` for a variable font |
| - `weight: ['100','400','900']`: An array of 3 possible values for a non variable font |
|
|
| ### `style` |
|
|
| The font [`style`](https: |
|
|
| - A string [value](https: |
| - An array of style values if the font is not a [variable google font](https: |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `style: 'italic'`: A string - it can be `normal` or `italic` for `next/font/google` |
| - `style: 'oblique'`: A string - it can take any value for `next/font/local` but is expected to come from [standard font styles](https: |
| - `style: ['italic','normal']`: An array of 2 values for `next/font/google` - the values are from `normal` and `italic` |
|
|
| ### `subsets` |
|
|
| The font [`subsets`](https: |
|
|
| Used in `next/font/google` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `subsets: ['latin']`: An array with the subset `latin` |
|
|
| You can find a list of all subsets on the Google Fonts page for your font. |
|
|
| ### `axes` |
|
|
| Some variable fonts have extra `axes` that can be included. By default, only the font weight is included to keep the file size down. The possible values of `axes` depend on the specific font. |
|
|
| Used in `next/font/google` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `axes: ['slnt']`: An array with value `slnt` for the `Inter` variable font which has `slnt` as additional `axes` as shown [here](https: |
|
|
| ### `display` |
|
|
| The font [`display`](https: |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `display: 'optional'`: A string assigned to the `optional` value |
|
|
| ### `preload` |
|
|
| A boolean value that specifies whether the font should be [preloaded](/docs/app/api-reference/components/font#preloading) or not. The default is `true`. |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `preload: false` |
|
|
| ### `fallback` |
|
|
| The fallback font to use if the font cannot be loaded. An array of strings of fallback fonts with no default. |
|
|
| - Optional |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| Examples: |
|
|
| - `fallback: ['system-ui', 'arial']`: An array setting the fallback fonts to `system-ui` or `arial` |
|
|
| ### `adjustFontFallback` |
|
|
| - For `next/font/google`: A boolean value that sets whether an automatic fallback font should be used to reduce [Cumulative Layout Shift](https: |
| - For `next/font/local`: A string or boolean `false` value that sets whether an automatic fallback font should be used to reduce [Cumulative Layout Shift](https: |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `adjustFontFallback: false`: for `next/font/google` |
| - `adjustFontFallback: 'Times New Roman'`: for `next/font/local` |
|
|
| ### `variable` |
|
|
| A string value to define the CSS variable name to be used if the style is applied with the [CSS variable method](#css-variables). |
|
|
| Used in `next/font/google` and `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `variable: '--my-font'`: The CSS variable `--my-font` is declared |
|
|
| ### `declarations` |
|
|
| An array of font face [descriptor](https: |
|
|
| Used in `next/font/local` |
|
|
| - Optional |
|
|
| Examples: |
|
|
| - `declarations: [{ prop: 'ascent-override', value: '90%' }]` |
|
|
| ## Examples |
|
|
| ## Google Fonts |
|
|
| To use a Google font, import it from `next/font/google` as a function. We recommend using [variable fonts](https: |
|
|
| <AppOnly> |
|
|
| ```tsx filename="app/layout.tsx" switcher |
| import { Inter } from 'next/font/google' |
|
|
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
|
|
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
|
|
| ```jsx filename="app/layout.js" switcher |
| import { Inter } from 'next/font/google' |
|
|
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
|
|
| export default function RootLayout({ children }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
|
|
| If you can't use a variable font, you will **need to specify a weight**: |
| |
| ```tsx filename="app/layout.tsx" switcher |
| import { Roboto } from 'next/font/google' |
| |
| const roboto = Roboto({ |
| weight: '400', |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html lang="en" className={roboto.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/layout.js" switcher |
| import { Roboto } from 'next/font/google' |
| |
| const roboto = Roboto({ |
| weight: '400', |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ children }) { |
| return ( |
| <html lang="en" className={roboto.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| </AppOnly> |
| |
| <PagesOnly> |
| |
| To use the font in all your pages, add it to [`_app.js` file](/docs/pages/building-your-application/routing/custom-app) under `/pages` as shown below: |
| |
| ```jsx filename="pages/_app.js" |
| import { Inter } from 'next/font/google' |
| |
| // If loading a variable font, you don't need to specify the font weight |
| const inter = Inter({ subsets: ['latin'] }) |
|
|
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <main className={inter.className}> |
| <Component {...pageProps} /> |
| </main> |
| ) |
| } |
| ``` |
|
|
| If you can't use a variable font, you will **need to specify a weight**: |
| |
| ```jsx filename="pages/_app.js" |
| import { Roboto } from 'next/font/google' |
| |
| const roboto = Roboto({ |
| weight: '400', |
| subsets: ['latin'], |
| }) |
| |
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <main className={roboto.className}> |
| <Component {...pageProps} /> |
| </main> |
| ) |
| } |
| ``` |
| |
| </PagesOnly> |
| |
| You can specify multiple weights and/or styles by using an array: |
| |
| ```jsx filename="app/layout.js" |
| const roboto = Roboto({ |
| weight: ['400', '700'], |
| style: ['normal', 'italic'], |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| ``` |
| |
| > **Good to know**: Use an underscore (\_) for font names with multiple words. E.g. `Roboto Mono` should be imported as `Roboto_Mono`. |
| |
| <PagesOnly> |
| |
| ### Apply the font in `<head>` |
| |
| You can also use the font without a wrapper and `className` by injecting it inside the `<head>` as follows: |
| |
| ```jsx filename="pages/_app.js" |
| import { Inter } from 'next/font/google' |
| |
| const inter = Inter({ subsets: ['latin'] }) |
| |
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <> |
| <style jsx global>{` |
| html { |
| font-family: ${inter.style.fontFamily}; |
| } |
| `}</style> |
| <Component {...pageProps} /> |
| </> |
| ) |
| } |
| ``` |
| |
| ### Single page usage |
| |
| To use the font on a single page, add it to the specific page as shown below: |
| |
| ```jsx filename="pages/index.js" |
| import { Inter } from 'next/font/google' |
| |
| const inter = Inter({ subsets: ['latin'] }) |
| |
| export default function Home() { |
| return ( |
| <div className={inter.className}> |
| <p>Hello World</p> |
| </div> |
| ) |
| } |
| ``` |
| |
| </PagesOnly> |
| |
| ### Specifying a subset |
| |
| Google Fonts are automatically [subset](https://fonts.google.com/knowledge/glossary/subsetting). This reduces the size of the font file and improves performance. You'll need to define which of these subsets you want to preload. Failing to specify any subsets while [`preload`](/docs/app/api-reference/components/font#preload) is `true` will result in a warning. |
|
|
| This can be done by adding it to the function call: |
|
|
| <AppOnly> |
|
|
| ```tsx filename="app/layout.tsx" switcher |
| const inter = Inter({ subsets: ['latin'] }) |
| ``` |
|
|
| ```jsx filename="app/layout.js" switcher |
| const inter = Inter({ subsets: ['latin'] }) |
| ``` |
|
|
| </AppOnly> |
|
|
| <PagesOnly> |
|
|
| ```jsx filename="pages/_app.js" |
| const inter = Inter({ subsets: ['latin'] }) |
| ``` |
|
|
| </PagesOnly> |
|
|
| View the [Font API Reference](/docs/app/api-reference/components/font) for more information. |
|
|
| ## Using Multiple Fonts |
|
|
| You can import and use multiple fonts in your application. There are two approaches you can take. |
|
|
| The first approach is to create a utility function that exports a font, imports it, and applies its `className` where needed. This ensures the font is preloaded only when it's rendered: |
| |
| ```ts filename="app/fonts.ts" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| |
| export const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| |
| export const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| ``` |
| |
| ```js filename="app/fonts.js" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| |
| export const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| |
| export const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| display: 'swap', |
| }) |
| ``` |
| |
| <AppOnly> |
| |
| ```tsx filename="app/layout.tsx" switcher |
| import { inter } from './fonts' |
| |
| export default function Layout({ children }: { children: React.ReactNode }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body> |
| <div>{children}</div> |
| </body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/layout.js" switcher |
| import { inter } from './fonts' |
| |
| export default function Layout({ children }) { |
| return ( |
| <html lang="en" className={inter.className}> |
| <body> |
| <div>{children}</div> |
| </body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```tsx filename="app/page.tsx" switcher |
| import { roboto_mono } from './fonts' |
| |
| export default function Page() { |
| return ( |
| <> |
| <h1 className={roboto_mono.className}>My page</h1> |
| </> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/page.js" switcher |
| import { roboto_mono } from './fonts' |
| |
| export default function Page() { |
| return ( |
| <> |
| <h1 className={roboto_mono.className}>My page</h1> |
| </> |
| ) |
| } |
| ``` |
| |
| </AppOnly> |
| |
| In the example above, `Inter` will be applied globally, and `Roboto Mono` can be imported and applied as needed. |
| |
| Alternatively, you can create a [CSS variable](/docs/app/api-reference/components/font#variable) and use it with your preferred CSS solution: |
| |
| <AppOnly> |
| |
| ```tsx filename="app/layout.tsx" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| import styles from './global.css' |
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| variable: '--font-inter', |
| display: 'swap', |
| }) |
| |
| const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| variable: '--font-roboto-mono', |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html lang="en" className={`${inter.variable} ${roboto_mono.variable}`}> |
| <body> |
| <h1>My App</h1> |
| <div>{children}</div> |
| </body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/layout.js" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| variable: '--font-inter', |
| display: 'swap', |
| }) |
| |
| const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| variable: '--font-roboto-mono', |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ children }) { |
| return ( |
| <html lang="en" className={`${inter.variable} ${roboto_mono.variable}`}> |
| <body> |
| <h1>My App</h1> |
| <div>{children}</div> |
| </body> |
| </html> |
| ) |
| } |
| ``` |
| |
| </AppOnly> |
| |
| ```css filename="app/global.css" |
| html { |
| font-family: var(--font-inter); |
| } |
| |
| h1 { |
| font-family: var(--font-roboto-mono); |
| } |
| ``` |
| |
| In the example above, `Inter` will be applied globally, and any `<h1>` tags will be styled with `Roboto Mono`. |
| |
| > **Recommendation**: Use multiple fonts conservatively since each new font is an additional resource the client has to download. |
| |
| ### Local Fonts |
| |
| Import `next/font/local` and specify the `src` of your local font file. We recommend using [variable fonts](https://fonts.google.com/variablefonts) for the best performance and flexibility. |
| |
| <AppOnly> |
| |
| ```tsx filename="app/layout.tsx" switcher |
| import localFont from 'next/font/local' |
| |
| // Font files can be colocated inside of `app` |
| const myFont = localFont({ |
| src: './my-font.woff2', |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html lang="en" className={myFont.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/layout.js" switcher |
| import localFont from 'next/font/local' |
| |
| // Font files can be colocated inside of `app` |
| const myFont = localFont({ |
| src: './my-font.woff2', |
| display: 'swap', |
| }) |
| |
| export default function RootLayout({ children }) { |
| return ( |
| <html lang="en" className={myFont.className}> |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| </AppOnly> |
| |
| <PagesOnly> |
| |
| ```jsx filename="pages/_app.js" |
| import localFont from 'next/font/local' |
| |
| // Font files can be colocated inside of `pages` |
| const myFont = localFont({ src: './my-font.woff2' }) |
| |
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <main className={myFont.className}> |
| <Component {...pageProps} /> |
| </main> |
| ) |
| } |
| ``` |
| |
| </PagesOnly> |
| |
| If you want to use multiple files for a single font family, `src` can be an array: |
| |
| ```js |
| const roboto = localFont({ |
| src: [ |
| { |
| path: './Roboto-Regular.woff2', |
| weight: '400', |
| style: 'normal', |
| }, |
| { |
| path: './Roboto-Italic.woff2', |
| weight: '400', |
| style: 'italic', |
| }, |
| { |
| path: './Roboto-Bold.woff2', |
| weight: '700', |
| style: 'normal', |
| }, |
| { |
| path: './Roboto-BoldItalic.woff2', |
| weight: '700', |
| style: 'italic', |
| }, |
| ], |
| }) |
| ``` |
| |
| View the [Font API Reference](/docs/app/api-reference/components/font) for more information. |
| |
| ### With Tailwind CSS |
| |
| `next/font` integrates seamlessly with [Tailwind CSS](https://tailwindcss.com/) using [CSS variables](/docs/app/api-reference/components/font#css-variables). |
| |
| In the example below, we use the `Inter` and `Roboto_Mono` fonts from `next/font/google` (you can use any Google Font or Local Font). Use the `variable` option to define a CSS variable name, such as `inter` and `roboto_mono` for these fonts, respectively. Then, apply `inter.variable` and `roboto_mono.variable` to include the CSS variables in your HTML document. |
| |
| > **Good to know**: You can add these variables to the `<html>` or `<body>` tag, depending on your preference, styling needs or project requirements. |
| |
| <AppOnly> |
| |
| ```tsx filename="app/layout.tsx" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| variable: '--font-inter', |
| }) |
| |
| const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| display: 'swap', |
| variable: '--font-roboto-mono', |
| }) |
| |
| export default function RootLayout({ |
| children, |
| }: { |
| children: React.ReactNode |
| }) { |
| return ( |
| <html |
| lang="en" |
| className={`${inter.variable} ${roboto_mono.variable} antialiased`} |
| > |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| ```jsx filename="app/layout.js" switcher |
| import { Inter, Roboto_Mono } from 'next/font/google' |
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| display: 'swap', |
| variable: '--font-inter', |
| }) |
| |
| const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| display: 'swap', |
| variable: '--font-roboto-mono', |
| }) |
| |
| export default function RootLayout({ children }) { |
| return ( |
| <html |
| lang="en" |
| className={`${inter.variable} ${roboto_mono.variable} antialiased`} |
| > |
| <body>{children}</body> |
| </html> |
| ) |
| } |
| ``` |
| |
| </AppOnly> |
| |
| <PagesOnly> |
| |
| ```jsx filename="pages/_app.js" |
| import { Inter } from 'next/font/google' |
| |
| const inter = Inter({ |
| subsets: ['latin'], |
| variable: '--font-inter', |
| }) |
| |
| const roboto_mono = Roboto_Mono({ |
| subsets: ['latin'], |
| display: 'swap', |
| variable: '--font-roboto-mono', |
| }) |
| |
| export default function MyApp({ Component, pageProps }) { |
| return ( |
| <main className={`${inter.variable} ${roboto_mono.variable} font-sans`}> |
| <Component {...pageProps} /> |
| </main> |
| ) |
| } |
| ``` |
| |
| </PagesOnly> |
| |
| Finally, add the CSS variable to your [Tailwind CSS config](/docs/app/guides/tailwind-css#configuring-tailwind): |
| |
| ### Tailwind CSS v4 |
| |
| As of [Tailwind v4](https://tailwindcss.com/blog/tailwindcss-v4), there is zero configuration required by default. If you do need to configure Tailwind, you can follow the [official documentation](https://tailwindcss.com/blog/tailwindcss-v4#css-first-configuration) for configuring the global CSS file. |
| |
| ```css filename="global.css" |
| @import 'tailwindcss'; |
| |
| @theme inline { |
| --font-sans: var(--font-inter); |
| --font-mono: var(--font-roboto-mono); |
| } |
| ``` |
| |
| ### Tailwind CSS v3 |
| |
| ```js filename="tailwind.config.js" |
| /** @type {import('tailwindcss').Config} */ |
| module.exports = { |
| content: [ |
| './pages/** |
| *.{js,ts,jsx,tsx}', |
| './app/** |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |