det0x/tailwind.config.js

12 lines
233 B
JavaScript
Raw Normal View History

2024-04-18 19:36:29 +10:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
2024-04-25 20:49:15 +10:00
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
2024-04-18 19:36:29 +10:00
extend: {},
},
plugins: [],
2024-04-18 19:36:29 +10:00
};