Files
torsearch/tailwind.config.js

20 lines
340 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./assets/**/*.js",
"./templates/**/*.html.twig",
],
safelist: [
"bg-blue-300",
"bg-orange-300",
"bg-rose-300",
"bg-green-400",
"bg-purple-400",
"bg-orange-400",
],
theme: {
extend: {},
},
plugins: [],
}