cpolis/tailwind.config.js

12 lines
236 B
JavaScript
Raw Permalink Normal View History

2024-04-01 14:22:59 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./web/templates/*.html"],
theme: {
extend: {}
},
plugins: [
require('@tailwindcss/typography')
],
2024-09-08 11:00:12 +02:00
darkMode: 'selector',
2024-04-01 14:22:59 +02:00
}