vite-templates/tailwind.config.js

12 lines
184 B
JavaScript
Raw Normal View History

2024-10-09 05:29:14 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}