Add Vercel adapter and update package dependencies

This commit is contained in:
2025-06-07 01:06:35 -03:00
parent 8d591a8dbf
commit 6a838a58d3
3 changed files with 600 additions and 3 deletions

View File

@@ -4,6 +4,8 @@ import react from '@astrojs/react';
import tailwind from '@astrojs/tailwind';
import vercel from '@astrojs/vercel/serverless';
// https://astro.build/config
export default defineConfig({
integrations: [
@@ -12,4 +14,7 @@ export default defineConfig({
applyBaseStyles: false,
}),
],
});
output: 'server',
adapter: vercel(),
});