diff --git a/settings/versioning.mdx b/settings/versioning.mdx index dbafd459c..7eb876a4a 100644 --- a/settings/versioning.mdx +++ b/settings/versioning.mdx @@ -10,6 +10,17 @@ These guides will assume `v1` pages are in a folder named `v1`, `v2` pages are i Add `"versions": ["v2", "v1"]` to your `mint.json` file where `v1` and `v2` are the names of your versions. You can put any number of versions in this array. The first version from the array serves as the default version. +If you would like to specify a default version, you can do so like this: + +```json +"versions": [ + { + "name": "version-name", + "default": true + } +] +``` + The versions dropdown will show your versions in the order you include them in `mint.json`.