vite-templates/tailwind.config.js

13 lines
206 B
JavaScript
Raw Normal View History

2024-10-09 05:29:14 -04:00
/** @type {import('tailwindcss').Config} */
2024-10-10 19:50:32 -04:00
const config = {
2024-10-09 05:29:14 -04:00
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
2024-10-10 19:50:32 -04:00
};
export default config;