snippets/resources/tailwind.config.js
2025-06-04 10:47:56 +02:00

12 lines
166 B
JavaScript

module.exports = {
content: [
'./src/**/*',
'./resources/**/*',
],
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
],
}