10 lines
270 B
JavaScript
10 lines
270 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./templates/**/*.html", "../../templates/**/*.html"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
safelist: ["horizontal-scroll"],
|
|
plugins: [require("@tailwindcss/typography")],
|
|
};
|