Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { defineConfig } from "astro/config";
import vercel from "@astrojs/vercel";
import tailwindcss from "@tailwindcss/vite";

// Server output so our /api routes run as Vercel serverless functions.
// All daily.dev calls go through them, keeping the token off the client.
Expand All @@ -9,4 +10,9 @@ export default defineConfig({
// Inject the Vercel Web Analytics script in production.
webAnalytics: { enabled: true },
}),
// Tailwind v4 via the Vite plugin (the @astrojs/tailwind integration is
// deprecated for v4).
vite: {
plugins: [tailwindcss()],
},
});
Loading