move to using /src - still css issue work
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 30s

This commit is contained in:
2025-11-12 16:08:48 -08:00
parent 6a9a57669e
commit 0e93e27a49
2 changed files with 19 additions and 33 deletions

View File

@@ -1,33 +1,2 @@
import { sync } from 'glob';
console.log('--- [TAILWIND CONFIG DEBUG] ---');
// 1. Log the Current Working Directory of this process
const cwd = process.cwd();
console.log(`[TAILWIND] Current Working Directory: ${cwd}`);
// 2. Define the glob patterns we want to test
const contentPatterns = [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}'
];
console.log(`[TAILWIND] Defined content patterns:`, contentPatterns);
// 3. Manually execute the glob search and log the results
try {
const foundFiles = sync(contentPatterns, { cwd: cwd, absolute: true });
console.log(`[TAILWIND] Glob sync found ${foundFiles.length} files:`);
// Log only the first few files to avoid flooding the log
console.log(foundFiles.slice(0, 10));
} catch (e) {
console.error('[TAILWIND] Glob sync failed!', e);
}
console.log('--- [TAILWIND CONFIG DEBUG END] ---');
/** @type {import('tailwindcss').Config} */
const config = {
content: contentPatterns,
};
export default config;
// tailwind.config.js
throw new Error('--- THIS IS THE TAILWIND CONFIG ERROR TEST. IF YOU SEE THIS, THE FILE IS BEING READ. ---');

View File

@@ -4,6 +4,23 @@ import { defineConfig as defineViteConfig } from 'vite';
import { defineConfig as defineVitestConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import tailwindcssPostcss from '@tailwindcss/postcss';
import { sync } from 'glob'; // Import the glob sync function
// --- VITE CONFIG DEBUGGING ---
console.log('--- [VITE CONFIG DEBUG] ---');
const cwd = process.cwd();
console.log(`[VITE] Current Working Directory: ${cwd}`);
const contentPatterns = ['./index.html', './src/**/*.{js,ts,jsx,tsx}'];
try {
const foundFiles = sync(contentPatterns, { cwd, absolute: true });
console.log(`[VITE] Glob sync found ${foundFiles.length} files from CWD:`);
console.log(foundFiles.slice(0, 15)); // Log the first 15 found files
} catch (e) {
console.error('[VITE] Glob sync failed!', e);
}
console.log('--- [VITE CONFIG DEBUG END] ---');
// --- END VITE CONFIG DEBUGGING ---
const __dirname = path.dirname(new URL(import.meta.url).pathname);