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

12 lines
314 B
Markdown

# Deployment
Running `npm run build` generates the `_site/` folder. Upload its contents to any static host. For Netlify, include a `netlify.toml` file:
```toml
[build]
command = "npm run build"
publish = "_site"
```
Other hosts work similarly—just make sure your CI system outputs the `_site/` directory.