css issues
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 33s

This commit is contained in:
2025-11-12 12:38:16 -08:00
parent 65caa10a70
commit ad3f063cdd
2 changed files with 3 additions and 6 deletions

View File

@@ -7,11 +7,8 @@ import containerQueries from '@tailwindcss/container-queries';
export default {
// Configure files to scan for Tailwind classes
content: [
'./index.html',
'./*.{js,ts,jsx,tsx}', // More robustly include root-level files like App.tsx and index.tsx
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}', // Add the pages directory
'./services/**/*.{js,ts,jsx,tsx}', // Add the services directory
"./index.html",
"./**/*.{js,ts,jsx,tsx}", // This single pattern recursively scans all folders for relevant files.
],
// Enable dark mode using a class
darkMode: 'class',