upgrade to tailwind 4
All checks were successful
renovate / renovate (push) Successful in 2m35s

This commit is contained in:
2025-06-08 17:10:20 -05:00
parent 7153f29022
commit 89e1c59e37
6 changed files with 1321 additions and 647 deletions

View File

@@ -1,5 +1,5 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import tailwindcss from '@tailwindcss/vite';
import react from '@astrojs/react';
const getSiteURL = () => {
@@ -11,5 +11,11 @@ const getSiteURL = () => {
export default defineConfig({
site: getSiteURL(),
integrations: [tailwind(), react()],
});
integrations: [tailwindcss(), react()],
plugins: {
"@tailwindcss/postcss": {},
},
vite: {
plugins: [tailwindcss()]
}
});