Brak opisu
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.

tailwind.config.js 487B

12345678910111213141516171819
  1. const defaultTheme = require('tailwindcss/defaultTheme');
  2. module.exports = {
  3. content: [
  4. './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
  5. './storage/framework/views/*.php',
  6. './resources/views/**/*.blade.php',
  7. ],
  8. theme: {
  9. extend: {
  10. fontFamily: {
  11. sans: ['Nunito', ...defaultTheme.fontFamily.sans],
  12. },
  13. },
  14. },
  15. plugins: [require('@tailwindcss/forms')],
  16. };