website/tailwind.config.js

17 lines
257 B
JavaScript
Raw Permalink Normal View History

2024-10-18 18:24:15 -04:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
2024-10-21 12:52:40 -04:00
extend: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
},
2024-10-18 18:24:15 -04:00
},
plugins: [],
}