kycnot.me/tailwind.config.js

13 lines
235 B
JavaScript
Raw Normal View History

2023-10-30 17:41:30 -04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2024-01-27 00:42:12 -05:00
content: ["./src/**/*.{html,js,gohtml}"],
2023-10-30 17:41:30 -04:00
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}