











In February, we shipped wildcard redirects and upgraded our dashboard, tab versioning setup, and more.
Here's a detailed look at all our latest updates this past month:
![]()
Ever since we shipped our first iteration of the dashboard, users have provided feedback to improve the dashboard utility and discoverability. That's why we're excited to announce a new dashboard experience. We're upgraded:
- The navbar to more readily access support, GitHub app configuration, and user management
- Update logs to see exactly what was changed and the status of an update. Now, when you make an unsuccessful update, we'll tell you exactly what went wrong
- The experience to toggle between your Mintlify projects to easily manage your deployments
Check out the new experience at app.mintlify.com
![]()
We now fully support versioning with tab— check out a great example of this setup above with our friends at [Frigade](https://docs.frigade.com/v2/quickstart).
You can set up tab versioning in your documentation by specifying the version in the `mint.json`.
"tabs": [
{
"name": "API Reference V1",
"url": "v1/api-reference",
"version": "v1"
},
{
"name": "API Reference V2",
"url": "v2/api-reference",
"version": "v2"
},
{
"name": "Tabs Without a Version",
"url": "example-tab"
}
]
A major feature request from our community has been supporting wildcard redirects. Now, you can simply add the following configuration to the redirects section of your `mint.json` to make that happen.
"redirects": [
{
"source": "/beta/:slug*",
"destination": "/v2/:slug*"
}
]
To match a wildcard path, use `*` after a parameter. In this example, `/beta/:slug*` will match `/beta/introduction` and redirect it to `/v2/introduction`. This will help preserve SEO for the original page when you make architectural changes to your documentation.
![]()
A common issue when updating documentation in markdown is accidentally introducing errors in the metadata. We now show the position of invalid frontmatter when there are parsing issues during local development.
Upgrade to our latest CLI with `npm i -g mintlify@latest` to get this latest error detection update in the CLI.
This concludes our February round-up of Mintlify's latest features. Stay tuned to all of our latest product updates, make sure to follow our Twitter. To request any features, let us know in our [Slack community](https://www.mintlify.com/community).
We have some exciting set of features shipping very soon!
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。