From a94da9a450361b1891d5d119cd0b9cc38a1b0c5f Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 31 Oct 2023 22:29:01 -0400 Subject: [PATCH] fix vercel stuff --- astro.config.mjs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index a9f50d1..04eae20 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -8,5 +8,14 @@ import vercel from "@astrojs/vercel/serverless"; export default defineConfig({ integrations: [tailwind(), react()], output: "hybrid", - adapter: vercel(), + adapter: vercel({ + imageService: true, + webAnalytics: { + enabled: true, + }, + speedInsights: { + enabled: true, + }, + functionPerRoute: true, + }), });