We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25b0880 commit 8e6ac82Copy full SHA for 8e6ac82
web/.gitignore
@@ -22,3 +22,4 @@ pnpm-debug.log*
22
23
# jetbrains setting folder
24
.idea/
25
+.vercel
web/astro.config.mjs
@@ -3,7 +3,10 @@ import { defineConfig } from "astro/config";
3
4
import tailwind from "@astrojs/tailwind";
5
6
+import vercel from "@astrojs/vercel";
7
+
8
// https://astro.build/config
9
export default defineConfig({
10
integrations: [tailwind()],
-});
11
+ adapter: vercel(),
12
+});
web/package.json
@@ -10,6 +10,7 @@
},
"dependencies": {
"@astrojs/tailwind": "^5.1.4",
13
+ "@astrojs/vercel": "^8.0.1",
14
"astro": "^5.1.1",
15
"tailwindcss": "^3.4.17"
16
0 commit comments