Construa em qualquer lugar. Publique com um comando.
Guias específicos por framework para colocar o resultado do seu build online com npx harvis — grátis, sem configuração e sem necessidade de conta para obter um link ao vivo.
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.