mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-25 09:34:50 +01:00
16 lines
262 B
JavaScript
16 lines
262 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./templates/**/*',
|
|
'!./templates/email/**/*'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: ["light", "dark"],
|
|
},
|
|
}
|
|
|