Skip to content

Commit

Permalink
fix(): Use import syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Dec 20, 2023
1 parent 4e6a6e9 commit 9a32ac3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tailwindTheme.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import typography from "@tailwindcss/typography";
import type { Config } from "tailwindcss";

import animate from "tailwindcss-animate";
export const tailwindTheme = {
darkMode: ["class", ".theme-mode-dark"],
theme: {
Expand Down Expand Up @@ -72,5 +73,5 @@ export const tailwindTheme = {
},
},
},
plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")],
plugins: [animate, typography],
} satisfies Partial<Config>;

0 comments on commit 9a32ac3

Please sign in to comment.