Fonts
Launch Express comes with built-in font optimization and supports both Google Fonts and custom fonts through Next.js´s powerful font system. The font configuration is managed in /src/app/layout.tsx.
Launch Express supports Google Fonts and also Local Fonts.
If you want to use it, you can check out the original documentation from Next.js
Google Fonts
By default, Launch Express uses the Bricolage_Grotesque font from Google Fonts, but you can easily change this to any other Google Font. Here’s how to use Google Fonts:
No other configuration is needed. The font will be automatically added to the head of your page.
Local Fonts
If you want to use local fonts, you can import them from next/font/local
:
Then, initialize the font with the required configuration:
If you need an more detailed explanation, you can check out the original documentation from Next.js
Was this page helpful?