1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00
apps/store/assets/tailwind.config.js
2024-05-12 17:37:37 +02:00

16 lines
325 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['../templates/*.html'],
darkMode: 'selector',
plugins: [
require('@tailwindcss/forms'),
require('./nightwind/src/index.js'),
],
safelist: [
'safelisted',
{
pattern: /^(text-[a-z]+-600|border-[a-z]+-400)$/,
},
]
}