cpolis/tailwind.config.js

11 lines
210 B
JavaScript
Raw 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-04-01 14:22:59 +02:00
}