/** @type {import('tailwindcss').Config} */ // Scans the .templ sources for utility classes. Custom v-* component classes // live in static/css/app.css, not here, so they need no safelisting. If a // utility class is ever built dynamically in Go rather than written as a // literal in a template, add it to `safelist` below. module.exports = { content: ["./templates/**/*.templ"], safelist: [], theme: { extend: {}, }, plugins: [], };