mirror of
https://github.com/PR0M3TH3AN/Archivox.git
synced 2025-09-08 06:58:43 +00:00
12 lines
314 B
Markdown
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.
|