accounts/ui/nextjs/tailwind.config.js
2025-06-18 10:51:38 +08:00

12 lines
191 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{ts,tsx}',
'./components/**/*.{ts,tsx}',
],
theme: {
extend: {},
},
plugins: [],
}