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.
20 lines
531 B
20 lines
531 B
const defaultTheme = require('tailwindcss/defaultTheme'); |
|
|
|
/** @type {import('tailwindcss').Config} */ |
|
module.exports = { |
|
content: [ |
|
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', |
|
'./storage/framework/views/*.php', |
|
'./resources/views/**/*.blade.php', |
|
], |
|
|
|
theme: { |
|
extend: { |
|
fontFamily: { |
|
sans: ['Nunito', ...defaultTheme.fontFamily.sans], |
|
}, |
|
}, |
|
}, |
|
|
|
plugins: [require('@tailwindcss/forms')], |
|
};
|
|
|