det0x/tailwind.config.js
2024-04-25 15:16:38 +02:00

12 lines
233 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
inter: ['Inter', 'sans-serif'],
},
extend: {},
},
plugins: [],
};