19 lines
837 B
JavaScript
19 lines
837 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
|
'./vendor/laravel/jetstream/**/*.blade.php',
|
|
'./storage/framework/views/*.php',
|
|
'./resources/views/**/*.blade.php',
|
|
'./resources/js/**/*.vue',
|
|
],
|
|
// Disable dark mode - we don't use it
|
|
darkMode: 'class', // Set to 'class' but don't add 'dark' class anywhere, or remove all dark: classes
|
|
// Note: Theme configuration has moved to CSS using @theme directive in app.css
|
|
// Plugins may need updates for Tailwind CSS 4 compatibility
|
|
plugins: [
|
|
// @tailwindcss/forms and @tailwindcss/typography are now imported via CSS
|
|
// Plugins are now imported via CSS or handled differently in Tailwind 4
|
|
],
|
|
};
|