Files
flyer-crawler.projectium.com/tailwind.config.js
Torben Sorensen 24a1c61679
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 23s
move to using /src - still css issue work
2025-11-12 14:55:28 -08:00

16 lines
457 B
JavaScript

import path from 'node:path';
import { fileURLToPath } from 'node:url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
/** @type {import('tailwindcss').Config} */
export default {
content: [
// Point to the root index.html
path.resolve(__dirname, './index.html'),
// Scan for all relevant files inside the new 'src' directory
path.resolve(__dirname, './src/**/*.{js,ts,jsx,tsx}'),
],
};