Dev branch
This commit is contained in:
+6
-21
@@ -1,33 +1,18 @@
|
||||
import defaultTheme from 'tailwindcss/defaultTheme';
|
||||
import forms from '@tailwindcss/forms';
|
||||
import typography from '@tailwindcss/typography';
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
||||
'./vendor/laravel/jetstream/**/*.blade.php',
|
||||
'node_modules/flowbite-vue/**/*.{js,jsx,ts,tsx,vue}',
|
||||
'node_modules/flowbite/**/*.{js,jsx,ts,tsx}',
|
||||
'./storage/framework/views/*.php',
|
||||
'./resources/views/**/*.blade.php',
|
||||
'./resources/js/**/*.vue',
|
||||
],
|
||||
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
// 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: [
|
||||
forms,
|
||||
typography,
|
||||
require('flowbite/plugin')({
|
||||
charts: true
|
||||
}),
|
||||
require('tailwindcss-inner-border')
|
||||
// @tailwindcss/forms and @tailwindcss/typography are now imported via CSS
|
||||
// Plugins are now imported via CSS or handled differently in Tailwind 4
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user