/** @type {import('tailwindcss').Config} */ module.exports = { content: [ './src/pug/**/*.pug', // Scan all pug files './src/**/*.js', // Scan JS if you use classes dynamically './src/**/*.ts', ], theme: { extend: {}, }, plugins: [], darkMode: false, };