Skip to content

Commit

Permalink
allow hybrid render
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan committed Dec 12, 2024
1 parent 2e4b77c commit f84525d
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,3 +128,5 @@ dist
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

.vercel
6 changes: 5 additions & 1 deletion astro/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
// @ts-check
import {defineConfig} from 'astro/config'

import vercel from '@astrojs/vercel';

// https://astro.build/config
export default defineConfig({})
export default defineConfig({
adapter: vercel()
})
1 change: 1 addition & 0 deletions astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"preview": "astro preview"
},
"dependencies": {
"@astrojs/vercel": "^8.0.0",
"astro": "^5.0.2"
}
}
153 changes: 134 additions & 19 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f84525d

Please sign in to comment.