fix: update ddev to include all tailwind css styles

This commit is contained in:
2025-04-21 19:24:29 +02:00
parent baf203e4fd
commit b7de6dee99
5 changed files with 25 additions and 285 deletions

View File

@@ -1,6 +1,7 @@
module.exports = {
module.exports = (ctx) => ({
plugins: {
tailwindcss: {},
autoprefixer: {},
// Only run autoprefixer in production
autoprefixer: ctx.env === 'production' ? {} : false,
},
}
});