Skip to content

Commit

Permalink
Fix build for Node v22 (#249)
Browse files Browse the repository at this point in the history
  • Loading branch information
wkwiatek authored Dec 13, 2024
1 parent 1854a39 commit c489483
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import tailwindcssAnimate from "tailwindcss-animate";

/** @type {import('tailwindcss').Config} */
module.exports = {
export default {
darkMode: ["class"],
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"],
prefix: "",
Expand Down Expand Up @@ -69,5 +71,5 @@ module.exports = {
},
},
},
plugins: [require("tailwindcss-animate")],
plugins: [tailwindcssAnimate],
};

0 comments on commit c489483

Please sign in to comment.