2024-12-23 21:21:47 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
|
|
|
content: ["./src/**/*.{html,js}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2024-12-24 17:42:21 +00:00
|
|
|
plugins: [
|
|
|
|
require('@tailwindcss/typography'),
|
|
|
|
],
|
2024-12-23 21:21:47 +00:00
|
|
|
}
|
|
|
|
|