Build វានៅទីណាក៏បាន។ ដេប្លយវាដោយពាក្យបញ្ជាតែមួយ។
មគ្គុទ្ទេសក៍ជាក់លាក់តាម framework សម្រាប់ដាក់លទ្ធផល build របស់អ្នកឱ្យដំណើរការលើអ៊ីនធឺណិតដោយប្រើ npx harvis — ឥតគិតថ្លៃ មិនចាំបាច់ config និងមិនចាំបាច់មានគណនីដើម្បីទទួលបានតំណភ្ជាប់ផ្ទាល់។
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.