anycoder-3f533a5e / tailwind.config.js
Manojsha9530's picture
Upload tailwind.config.js with huggingface_hub
aa921ae
Raw
History Blame Contribute Delete
279 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}