Static
Static export for frontend sites
Use `wevoa build --static` when the site is mostly pages, docs, marketing, or download content. The output is plain HTML, CSS, assets, and files ready for static hosting.
- Great for docs, product pages, and landing sites
- Deployable to Vercel and other static hosts
- Live data is captured at build time
Runtime
Full runtime for dynamic apps
Use `wevoa serve` when the app needs live route execution, sessions, database access, form handling, or request-time API calls.
- Best for dashboards, internal tools, and products
- Keeps Wevoa routing and server helpers active
- Deploy on a VPS or normal server environment