tailwind.config.cjs (290B)
1 const defaultTheme = require('tailwindcss/defaultTheme') 2 3 module.exports = { 4 content: [ 5 "./index.html", 6 "./src/**/*.{js,ts,jsx,tsx}", 7 ], 8 theme: { 9 extend: { 10 fontFamily: { 11 sans: ['Inter', ...defaultTheme.fontFamily.sans], 12 }, 13 }, 14 }, 15 plugins: [], 16 }