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

@@ -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);