Files
Archivox/docs/content/04-deployment/index.md
2025-07-10 16:00:03 -04:00

314 B

Deployment

Running npm run build generates the _site/ folder. Upload its contents to any static host. For Netlify, include a netlify.toml file:

[build]
  command = "npm run build"
  publish = "_site"

Other hosts work similarly—just make sure your CI system outputs the _site/ directory.