mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-24 17:14:50 +01:00
26 lines
478 B
JavaScript
26 lines
478 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./templates/**/*',
|
|
'!./templates/email/**/*'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
maxWidth: '90ch', // Override max-width for all prose instances
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require("@tailwindcss/typography"),
|
|
require('daisyui')],
|
|
daisyui: {
|
|
themes: ["light", "dark"],
|
|
},
|
|
}
|
|
|