vite-templates/tailwind.config.js
2024-10-10 20:07:20 -04:00

12 lines
182 B
JavaScript

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