VoidTrack Docs

Fonts

Configure the UI font without bundling anything.

The UI font is configuration, not a bundled asset. VoidTrack ships no fonts and no per font stylesheets. Point VOIDTRACK_FONT_CSS at any stylesheet with @font-face rules, and name the family in VOIDTRACK_FONT_FAMILY.

# Hosted webfont, works on any deploy, nothing to install
VOIDTRACK_FONT_CSS=https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap
VOIDTRACK_FONT_FAMILY=Satoshi

# Or self host: drop your font files in apps/web/public/fonts (gitignored) and
# add a stylesheet there declaring them. See the template in that directory's README.
VOIDTRACK_FONT_CSS=/fonts/myfont.css
VOIDTRACK_FONT_FAMILY=MyFont

Leave both variables unset for the system font stack. See apps/web/public/fonts/README.md in the repo for the self hosted template.