Macrame/panels/Elite_Dangerous/tailwind.config.js
2025-04-28 11:08:18 +02:00

17 lines
326 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html", // Ensure this path is correct
],
theme: {
extend: {},
},
safelist: [
{
pattern: /^(border|bg)-(blue|red|sky|orange|lime)-(200|400|300\/40)$/,
},
],
plugins: [],
preflight: false,
mode: "jit",
};