From 298d2f3426675a893ae05b6cf5460cb0c93b7199 Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Wed, 20 Dec 2023 11:25:29 +0000 Subject: [PATCH] fix(): Require doesn't bundle deps? --- src/tailwindTheme.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tailwindTheme.ts b/src/tailwindTheme.ts index b690220..fc032cf 100644 --- a/src/tailwindTheme.ts +++ b/src/tailwindTheme.ts @@ -1,6 +1,5 @@ -// import typography from "@tailwindcss/typography"; import type { Config } from "tailwindcss"; -// import animate from "tailwindcss-animate"; + export const tailwindTheme = { darkMode: ["class", ".theme-mode-dark"], theme: { @@ -73,5 +72,5 @@ export const tailwindTheme = { }, }, }, - // plugins: [animate, typography], + plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")], } satisfies Partial;