Sitesdependsjson
Sitesdependsjson is the name commonly given to a configuration file used in certain web development workflows to declare dependencies and settings for multiple sites within a single repository or deployment. The file is typically named sitesdepends.json and is read by custom tooling as part of a build or deployment pipeline.
The purpose of sitesdependsjson is to centralize per-site information in multi-site projects, allowing teams to specify
A typical file uses a top-level structure that includes a sites array. Each site entry may contain
{
"sites": [
{
},
"buildCommand": "npm run build"
},
{
},
"buildCommand": "mkdocs build"
}
]
}
See also: monorepo configurations, per-site manifests, and tools that manage multi-project builds. The term is most