mirror of
https://github.com/perstarkse/minne.git
synced 2026-01-18 15:56:55 +01:00
15 lines
223 B
JavaScript
15 lines
223 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/server/templates/**/*'
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [require('daisyui')],
|
|
daisyui: {
|
|
themes: ["dark"],
|
|
},
|
|
}
|
|
|