Files
Mangarr/tailwind.config.js
2025-02-12 16:12:01 +01:00

21 lines
362 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./templates/**/*.html.twig',
'./assets/react/**/*.{js,jsx}',
'./assets/**/*.{js,jsx}'
],
theme: {
extend: {},
},
plugins: [
// require("daisyui"),
],
safelist: [
'bg-red-500',
'bg-blue-500',
'bg-yellow-500',
'bg-green-500',
],
}