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
|
|
|
}
|
|
|
|
|