move to using /src - still css issue work
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 23s

This commit is contained in:
2025-11-12 14:55:28 -08:00
parent dcb81647e4
commit 24a1c61679
84 changed files with 36 additions and 37 deletions

View File

@@ -1,17 +1,16 @@
import path from 'node:path';
import { fileURLToPath } from 'node:url';
// Boilerplate to get the equivalent of __dirname in an ES module
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
/** @type {import('tailwindcss').Config} */
export default {
content: [
// Resolve paths absolutely from the config file's location
// Point to the root index.html
path.resolve(__dirname, './index.html'),
path.resolve(__dirname, './App.tsx'),
path.resolve(__dirname, './index.tsx'),
path.resolve(__dirname, './{components,pages,services,utils}/**/*.{js,ts,jsx,tsx}'),
// Scan for all relevant files inside the new 'src' directory
path.resolve(__dirname, './src/**/*.{js,ts,jsx,tsx}'),
],
};