smaller tailwind build for emails

This commit is contained in:
2023-02-11 13:05:13 +02:00
parent e62244acae
commit a8fbf2d016
7 changed files with 1374 additions and 15 deletions

14
config/tailwind.email.js Normal file
View File

@ -0,0 +1,14 @@
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
corePlugins: {
preflight: false,
opacity: false,
},
content: [
'./app/views/merged/view/**/*.haml',
'./lib/**/*.rb'
],
plugins: [
]
}