Build ที่ไหนก็ได้ ดีพลอยด้วยคำสั่งเดียว
คู่มือเฉพาะเฟรมเวิร์กสำหรับเอาผลลัพธ์ build ของคุณขึ้นออนไลน์ด้วย 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.