Build and Deploy
vext build compiles server output and frontend output in one command.
Output
When frontend is enabled, production output includes:
vext start serves the built client assets and uses render-manifest.json for SSR.
Build Command
To upload static assets after build:
Or run upload separately:
Deploy Manifest
deploy-manifest.json records static assets that can be uploaded:
- JS and CSS assets
- imported images/fonts/media
- copied
public/**files - content type
- sha256
- SRI for eligible assets
- upload key and public URL
HTML is not uploaded by default because SSR still belongs to the server runtime.
Incremental Upload
The upload state file stores known sha256 values. Unchanged assets are skipped, so images and fonts are not uploaded again on every release.
Keep stateFile outside the frontend outDir because build output is normally cleaned.