topnotch_website/tailwind.config.js

15 lines
251 B
JavaScript
Raw Normal View History

2024-10-10 15:15:30 -07:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./resources/**/*.blade.php",
2025-02-01 09:57:57 -08:00
"./resources/**/*",
2024-11-05 11:35:23 -05:00
"./app/Filament/**/*.php",
"./vendor/filament/**/*.php"
2024-10-10 15:15:30 -07:00
],
theme: {
extend: {},
},
plugins: [],
}