From bd921aa827d0edbf8ad8523cf570d8baba4c9076 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 24 Sep 2025 09:16:37 +0200 Subject: Add types and fix chunk size warning --- astro.config.mjs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'astro.config.mjs') diff --git a/astro.config.mjs b/astro.config.mjs index 2658cfe..a7143db 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -11,8 +11,13 @@ export default defineConfig({ integrations: [react()], vite: { - plugins: [tailwindcss()] + plugins: [tailwindcss()], + build: { + chunkSizeWarningLimit: 2000 + } }, - adapter: cloudflare({}) + adapter: cloudflare({ + imageService: "compile" + }) }); \ No newline at end of file -- cgit v1.3.1