You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: [
|
|
|
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
|
|
|
|
'./resources/views/**/*.blade.php',
|
|
|
|
'./app/Models/*.php',
|
|
|
|
'./resources/js/**/*.jsx',
|
|
|
|
'./node_modules/flowbite/**/*.js',
|
|
|
|
'./node_modules/flowbite-react/**/*.{js,jsx,ts,tsx}',
|
|
|
|
],
|
|
|
|
|
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
fontFamily: {
|
|
|
|
sans: ['Nunito', ...defaultTheme.fontFamily.sans],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
plugins: [require('@tailwindcss/forms'), require('flowbite/plugin')],
|
|
|
|
}
|