diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 09:16:37 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 09:16:37 +0200 |
| commit | bd921aa827d0edbf8ad8523cf570d8baba4c9076 (patch) | |
| tree | 9e23929f5e2e22036a0c3c4c27d999489fd0230d /astro.config.mjs | |
| parent | addc8c74a51fa9fa44ebe0edb218ad49ebb4f233 (diff) | |
Add types and fix chunk size warning
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 9 |
1 files changed, 7 insertions, 2 deletions
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 |
