vite-templates/tailwind.config.js

12 lines
182 B
JavaScript
Raw Normal View History

2024-10-10 20:07:20 -04:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}