You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
541 B
21 lines
541 B
import defaultTheme from 'tailwindcss/defaultTheme'; |
|
import forms from '@tailwindcss/forms'; |
|
|
|
/** @type {import('tailwindcss').Config} */ |
|
export default { |
|
content: [ |
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', |
|
'./storage/framework/views/*.php', |
|
'./resources/views/**/*.blade.php', |
|
], |
|
|
|
theme: { |
|
extend: { |
|
fontFamily: { |
|
sans: ['Figtree', ...defaultTheme.fontFamily.sans], |
|
}, |
|
}, |
|
}, |
|
|
|
plugins: [forms], |
|
};
|
|
|