loan_market_dashboard/tailwind.config.js

15 lines
221 B
JavaScript
Raw Normal View History

2023-08-16 09:09:36 +07:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
},
2023-08-16 13:07:42 +07:00
plugins: [
require('@tailwindcss/forms'),
],
2023-08-16 09:09:36 +07:00
}