const path = require('node:path'); /** @type {import('tailwindcss').Config} */ module.exports = { content: [path.join(__dirname, 'app/**/*.{ts,tsx}')], theme: { extend: { fontFamily: { sans: [ 'Inter', 'ui-sans-serif', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif', ], }, }, }, plugins: [], };