det0x/tailwind.config.js

11 lines
220 B
JavaScript
Raw Normal View History

2024-04-24 03:44:44 +10:00
import inter from 'tailwindcss-font-inter';
2024-04-18 19:36:29 +10:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
2024-04-24 03:44:44 +10:00
plugins: [inter],
2024-04-18 19:36:29 +10:00
};