Fix tailwind

This commit is contained in:
2024-01-14 19:01:27 +01:00
parent 6a3f86bdc8
commit de06bef97e
3 changed files with 7 additions and 5 deletions

View File

@@ -17,5 +17,9 @@ export default async function Index() {
const isSupabaseConnected = canInitSupabaseClient(); const isSupabaseConnected = canInitSupabaseClient();
return <></>; return (
<>
<h1 className="text-xl">hello</h1>
</>
);
} }

View File

@@ -15,6 +15,7 @@
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"tailwindcss": "3.3.3", "tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.1.3" "typescript": "5.1.3"
}, },
"devDependencies": { "devDependencies": {

View File

@@ -1,6 +1,3 @@
module.exports = { module.exports = {
plugins: { plugins: ["tailwindcss", "autoprefixer"],
tailwindcss: {},
autoprefixer: {},
},
}; };