vercel adapter

This commit is contained in:
Oliver Bryan
2025-09-08 10:54:50 +01:00
parent 14597b1a21
commit 7e7767386a
3 changed files with 813 additions and 6 deletions

View File

@@ -1,5 +1,9 @@
// @ts-check // @ts-check
import { defineConfig } from 'astro/config'; import { defineConfig } from 'astro/config';
import vercel from '@astrojs/vercel';
// https://astro.build/config // https://astro.build/config
export default defineConfig({}); export default defineConfig({
adapter: vercel()
});

810
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,6 +9,7 @@
"astro": "astro" "astro": "astro"
}, },
"dependencies": { "dependencies": {
"@astrojs/vercel": "^8.2.7",
"astro": "^5.13.5" "astro": "^5.13.5"
} }
} }