mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
* appgenerator: rework css using tailwind + misc cleanup, wording * appgenerator: tweak gettext + update translations (at least fr) * appgenerator: bump version idk
17 lines
292 B
JavaScript
17 lines
292 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['../templates/*.html'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
safelist: [
|
|
'safelisted',
|
|
{
|
|
pattern: /^(text-[a-z]+-600|border-[a-z]+-400)$/,
|
|
},
|
|
]
|
|
}
|
|
|