diff --git a/.gitignore b/.gitignore index 753c82e..5bc9361 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,4 @@ pnpm-debug.log* .direnv/ # vercel -.vercel/ \ No newline at end of file +.vercel/ diff --git a/astro.config.mjs b/astro.config.mjs index 4d51521..11e4c57 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,6 +1,6 @@ +import compress from "astro-compress"; import robotsTxt from "astro-robots-txt"; import { defineConfig } from "astro/config"; -import compress from "astro-compress"; import svelte from "@astrojs/svelte"; @@ -13,12 +13,9 @@ export default defineConfig({ integrations: [robotsTxt(), compress(), svelte()], vite: { ssr: { - external: ["svgo"] - } - }, - experimental: { - integrations: true + external: ["svgo"], + }, }, output: "server", - adapter: vercel() -}); \ No newline at end of file + adapter: vercel(), +}); diff --git a/package.json b/package.json index e44c5e0..785a358 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "dependencies": { "@astrojs/svelte": "^2.1.0", - "@astrojs/vercel": "^3.2.1", + "@astrojs/vercel": "^3.2.0", "astro": "^2.1.8", "astro-compress": "^1.1.32", "astro-icon": "^0.8.0",