Skip to content

Commit 8e6ac82

Browse files
committed
feat(web): add vercel integration
1 parent 25b0880 commit 8e6ac82

File tree

4 files changed

+1563
-2599
lines changed

4 files changed

+1563
-2599
lines changed

web/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ pnpm-debug.log*
2222

2323
# jetbrains setting folder
2424
.idea/
25+
.vercel

web/astro.config.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import { defineConfig } from "astro/config";
33

44
import tailwind from "@astrojs/tailwind";
55

6+
import vercel from "@astrojs/vercel";
7+
68
// https://astro.build/config
79
export default defineConfig({
810
integrations: [tailwind()],
9-
});
11+
adapter: vercel(),
12+
});

web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@astrojs/tailwind": "^5.1.4",
13+
"@astrojs/vercel": "^8.0.1",
1314
"astro": "^5.1.1",
1415
"tailwindcss": "^3.4.17"
1516
},

0 commit comments

Comments
 (0)