- use new postcss config for tailwind
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
oonyeje 2025-03-02 10:56:34 -05:00
parent 196c8c47f8
commit ccc3b2396b
2 changed files with 3 additions and 1 deletions

View File

@ -41,6 +41,7 @@
"eslint-config-next": "latest", "eslint-config-next": "latest",
"postcss": "latest", "postcss": "latest",
"tailwindcss": "latest", "tailwindcss": "latest",
"@tailwindcss/postcss": "latest",
"typescript": "latest" "typescript": "latest"
} }
} }

View File

@ -1,6 +1,7 @@
module.exports = { module.exports = {
plugins: { plugins: {
tailwindcss: {}, // tailwindcss: {},
autoprefixer: {}, autoprefixer: {},
"@tailwindcss/postcss": {}
}, },
} }