Files
Archivox/docs/content/deployment/index.md
2025-07-10 12:02:39 -04:00

10 lines
213 B
Markdown

# Deployment
DocForge sites output to the `_site/` folder. Host the contents on any static server. For Netlify, include a `netlify.toml` file:
```toml
[build]
command = "npm run build"
publish = "_site"
```