Files
client.dreamfreely/tailwind.config.js

12 lines
208 B
JavaScript
Raw Normal View History

2025-11-11 18:20:04 -05:00
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}