We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15278c9 commit 87db60eCopy full SHA for 87db60e
postcss.config.mjs
@@ -1,8 +1,9 @@
1
/** @type {import('postcss-load-config').Config} */
2
const config = {
3
plugins: {
4
- tailwindcss: {},
+ '@tailwindcss/postcss': {}, // Use the new package here
5
+ autoprefixer: {},
6
},
-};
7
+}
8
-export default config;
9
+export default config
tailwind.config.ts
@@ -48,6 +48,10 @@ const config: Config = {
48
49
50
51
- plugins: [],
+ plugins: [
52
+ require('tailwindcss-animate'),
53
+ require('@tailwindcss/typography'),
54
+ require('@tailwindcss/forms'),
55
+ ],
56
}
57
export default config
0 commit comments