Files
DevReport/tailwind.config.js

11 lines
183 B
JavaScript
Raw Normal View History

2025-04-24 19:13:20 +08:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}