mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./_includes/**/*.{html,njk,md}', './content/**/*.{html,njk,md}'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
daisyui: {
|
|
themes: ['light', 'dark'],
|
|
},
|
|
plugins: [require('@tailwindcss/typography'), require('daisyui')],
|
|
}
|