Files
topos/tailwind.config.js
2023-08-26 19:23:15 +02:00

17 lines
300 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
safelist: [
{
pattern: /hljs+/,
},
],
theme: {
extend: {},
hljs: {
theme: "rainbow",
},
},
plugins: [require("tailwind-highlightjs")],
};