css issues
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 33s
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 33s
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"build": "vite build --debug",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest run --coverage",
|
||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user