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
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 30s
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user