From ea37655c6efbcc106eec1c4a3002f539f414d4bd Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Thu, 26 Jun 2025 00:05:59 -0600 Subject: [PATCH] Update tailwind.config.js --- tailwind.config.js | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 9ae0bb6..8a041b1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,20 +1,12 @@ -import defaultTheme from 'tailwindcss/defaultTheme'; - /** @type {import('tailwindcss').Config} */ export default { content: [ - './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', - './storage/framework/views/*.php', - './resources/**/*.blade.php', - './resources/**/*.js', - './resources/**/*.vue', + "./resources/**/*.blade.php", + "./resources/**/*.js", + "./resources/**/*.vue", ], theme: { - extend: { - fontFamily: { - sans: ['Nunito', 'sans-serif'], - }, - }, + extend: {}, }, plugins: [], -}; + }