* docs: added description to documentation pages * docs: added more descriptions * docs: finished improving meta description * docs: added searchbox structured data * docs: added breadcrumbs structured data * docs: added how to structured data * docs: improved 404 page * docs: added how-to frontmatter option
24 lines
827 B
Plaintext
24 lines
827 B
Plaintext
---
|
|
hide_table_of_contents: true
|
|
description: 'Upgrade guides on how to update the Medusa server along with other Medusa components to the latest version.'
|
|
---
|
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
|
|
import filterListItems, { flattenList } from '@site/src/utils/filterListItems';
|
|
|
|
# Upgrade Guides
|
|
|
|
Find in this page the upgrade guides that require necessary steps when upgrading to a new version.
|
|
|
|
## Server
|
|
|
|
<DocCardList items={filterListItems(flattenList(useCurrentSidebarCategory().items), /\/medusa\-core\//)}/>
|
|
|
|
## Medusa React
|
|
|
|
<DocCardList items={filterListItems(flattenList(useCurrentSidebarCategory().items), /\/medusa-react\//)}/>
|
|
|
|
## Admin
|
|
|
|
<DocCardList items={filterListItems(flattenList(useCurrentSidebarCategory().items), /\/admin\//)}/> |