mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-01-08 21:57:58 -05:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./src/web/**/*.{html,js}"],
|
||
|
theme: {
|
||
|
extend: {},
|
||
|
},
|
||
|
plugins: [
|
||
|
require('@tailwindcss/typography'),
|
||
|
require('@tailwindcss/forms'),
|
||
|
],
|
||
|
}
|
||
|
|