appstore: replace tailwind huge JS play CDN with some actual minimal css build

This commit is contained in:
Alexandre Aubin
2023-09-19 18:40:44 +02:00
parent 0a6e0b0165
commit 0fb538c6e7
5 changed files with 60 additions and 38 deletions

View File

@ -0,0 +1,17 @@
/** @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)$/,
},
]
}