build: update to tailwindcss v4
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled

This commit is contained in:
rzmk 2025-11-24 14:56:30 -05:00
parent bc3770ece5
commit 6a4723760d
9 changed files with 126 additions and 122 deletions

View file

@ -1,8 +1,12 @@
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tailwind from "@astrojs/tailwind";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
site: "https://qsvpro.dathere.com",
integrations: [react(), tailwind()],
});
site: "https://qsvpro.dathere.com",
integrations: [react(), tailwindcss()],
vite: {
plugins: [tailwindcss()],
},
});