Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 23s
16 lines
457 B
JavaScript
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}'),
|
|
],
|
|
}; |