mirror of
https://github.com/booklore-app/booklore.git
synced 2025-12-23 14:20:48 -05:00
15 lines
236 B
JavaScript
15 lines
236 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('tailwindcss-primeui'),
|
|
require('@tailwindcss/typography')
|
|
]
|
|
}
|
|
|