From de06bef97ea3f69a1bc1915ecd8da497acfe8bf4 Mon Sep 17 00:00:00 2001 From: Stan Runge Date: Sun, 14 Jan 2024 19:01:27 +0100 Subject: [PATCH] Fix tailwind --- app/page.tsx | 6 +++++- package.json | 1 + postcss.config.js | 5 +---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 5e563f2..25eaad5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -17,5 +17,9 @@ export default async function Index() { const isSupabaseConnected = canInitSupabaseClient(); - return <>; + return ( + <> +

hello

+ + ); } diff --git a/package.json b/package.json index 706ea90..26a8565 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "react": "18.2.0", "react-dom": "18.2.0", "tailwindcss": "3.3.3", + "tailwindcss-animate": "^1.0.7", "typescript": "5.1.3" }, "devDependencies": { diff --git a/postcss.config.js b/postcss.config.js index 12a703d..f46b31c 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,3 @@ module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, + plugins: ["tailwindcss", "autoprefixer"], };