mirror of
https://github.com/Macrame-App/Macrame
synced 2025-12-29 15:29:26 +00:00
17 lines
326 B
JavaScript
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",
|
|
};
|