From c2adc5c70e2673fe5cd588b40fb89f385ebafaad Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Wed, 20 Dec 2023 11:17:53 +0000 Subject: [PATCH] fix(): Test drop plugins. --- src/tailwindTheme.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tailwindTheme.ts b/src/tailwindTheme.ts index b4664e5..b690220 100644 --- a/src/tailwindTheme.ts +++ b/src/tailwindTheme.ts @@ -1,6 +1,6 @@ -import typography from "@tailwindcss/typography"; +// import typography from "@tailwindcss/typography"; import type { Config } from "tailwindcss"; -import animate from "tailwindcss-animate"; +// import animate from "tailwindcss-animate"; export const tailwindTheme = { darkMode: ["class", ".theme-mode-dark"], theme: { @@ -73,5 +73,5 @@ export const tailwindTheme = { }, }, }, - plugins: [animate, typography], + // plugins: [animate, typography], } satisfies Partial;