Skip to content

Commit f095fbd

Browse files
committed
Fix build for Node v22
1 parent 1854a39 commit f095fbd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tailwind.config.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
import tailwindcssAnimate from "tailwindcss-animate";
2+
13
/** @type {import('tailwindcss').Config} */
2-
module.exports = {
4+
export default {
35
darkMode: ["class"],
46
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
57
prefix: "",
@@ -69,5 +71,5 @@ module.exports = {
6971
},
7072
},
7173
},
72-
plugins: [require("tailwindcss-animate")],
74+
plugins: [tailwindcssAnimate],
7375
};

0 commit comments

Comments
 (0)