install Jetstream

This commit is contained in:
2025-01-26 09:45:22 +00:00
parent f3acd28788
commit 71507f9818
93 changed files with 6918 additions and 13 deletions
+7 -4
View File
@@ -1,14 +1,16 @@
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',
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
@@ -16,5 +18,6 @@ export default {
},
},
},
plugins: [],
plugins: [forms, typography],
};