어디서든 빌드하세요. 배포는 명령어 하나로.
npx harvis로 빌드 결과물을 온라인에 올리는 프레임워크별 가이드 — 무료이며 설정도 필요 없고, 실제 링크를 받는 데 계정도 필요 없습니다.
React
Whatever scaffolded it — Vite outputs dist, Create React App outputs build.
Vue
The official create-vue scaffold, built with npm run build.
Next.js
Static export only — add output: 'export' to next.config first.
Astro
Static by default. npm run build writes straight to dist.
Vite
Every official template — vanilla, React, Vue, Svelte — builds to dist.
Svelte
Plain Svelte via Vite builds to dist. SvelteKit needs adapter-static.
Angular
ng build. Angular 17+ nests the output one folder deeper, in browser.
Gatsby
gatsby build always writes to public — same folder, every version.
Nuxt
npm run generate, not build — that one starts a Node server instead.
Hugo
Just run hugo. Output lands in public, every time.
Jekyll
bundle exec jekyll build writes to _site — the same folder GitHub Pages serves.
Static HTML
No build step. The folder you already have is the deploy.