Deployment Guides
Deploy Any Framework with Bantam CLI
Quick deployment guides for React, Vue, Next.js, and 20+ frameworks. Find your framework, run the build command, deploy with Bantam.
Frontend Frameworks
React
Facebook's component library
npm run build
build
Vue.js
Progressive JavaScript framework
npm run build
dist
Angular
Google's TypeScript framework
ng build
dist/{name}
Next.js
React framework with SSG
npm run build && npm run export
./out
Nuxt.js
Vue.js framework with SSG
npm run generate
output/public
SvelteKit
Svelte's application framework
npm run build
build
Solid.js
Reactive UI library
npm run build
dist
Vite
Fast build tool
npm run build
dist
Static Site Generators
Documentation Tools
Universal Deploy Command
Works with any static site generator or build tool:
# Build your project (varies by framework)
npm run build
# Deploy the output directory
bantam deploy ./dist
# Deploy with a custom domain
bantam deploy ./dist --domain myapp.com