kycnot.me/tailwind.config.js

13 lines
228 B
JavaScript
Raw Normal View History

2023-10-30 22:41:30 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-11-12 22:06:22 +01:00
content: ["./src/**/*.{html,js}"],
2023-10-30 22:41:30 +01:00
theme: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
],
}