惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
量子位
D
DataBreaches.Net
博客园 - 司徒正美
J
Java Code Geeks
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
B
Blog
The Cloudflare Blog
D
Docker
I
InfoQ
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
有赞技术团队
有赞技术团队

Mintlify Blog

22 UX improvements to the web editor Introducing the Mintlify Help Center Starter Kit Introducing the collaborative editor built for teams and agents Workflows, rebuilt Is your documentation agent-ready? Mintlify raises $45M Series B led by Andreessen Horowitz and Salesforce Ventures 5 things you didn't know you could do in the Mintlify web editor The improved Mintlify CLI Docs on autopilot: From zero to self-maintaining with Mintlify The state of agent traffic in documentation (March 2026) How we built a virtual filesystem for our Assistant We Replaced Our Internal Wiki With a Slack Bot. You Should Too. 8 ways teams use Mintlify to keep docs updated automatically Documentation is your AI interface What three years of watching AI in production taught us Bridging two JSX runtimes: How we solved Astro's React children problem AI agents are shipping faster than anyone can document Knowledge management systems for technical teams Workflows: Automate documentation maintenance Mintlify acquires Helicone to redefine AI knowledge infrastructure Why more product managers are switching to Mintlify Auto-generating documentation sites from GitHub repos Your docs, your frontend, our content engine Take control of your documentation system Almost half your docs traffic is AI, time to understand the agent experience @mintlify for better docs, faster Mintlify for Enterprise Real llms.txt examples from leading tech companies (and what they got right) Mintlify + Claude Opus 4.6: Powering AI-native knowledge management Declaring Clankruptcy: An experiment in agent orchestration
Mintlify product update February 2024
Joshua Kim · 2024-03-08 · via Mintlify Blog

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!