Deployment
Comment system for pages at the bottom
Deployment Mode#
Vercel#
This theme supports Vercel by default:
- Push your code to your online Git repository (GitHub, GitLab, BitBucket).
- Import your project ↗ into Vercel.
- Vercel will automatically detect Astro and configure the right settings.
- Your application is deployed! (e.g. astro.vercel.app ↗)
And vercel also support static method:
astro.config.mjs
import vercelServerless from '@astrojs/vercel/serverless'
import vercelStatic from '@astrojs/vercel/static';
export default defineConfig({
// ...
adapter: vercelServerless()
adapter: vercelStatic(),
})
tsStatic#
If you are deploying with Node.js locally, you need to install @astrojs/node
first:
bun add '@astrojs/node'
shellThen follow the comments in astro.config.ts
and modify like:
astro.config.ts
import vercelServerless from '@astrojs/vercel/serverless'
import node from '@astrojs/node'
export default defineConfig({
// ...
adapter: vercelServerless()
adapter: node({ mode: 'standalone' })
})
tsGitHub Pages#
See Astro: Configure Astro for GitHub Pages ↗.
See more docs