* docs: added a multi-region recipe * added other category to plugins list * fix eslint errors * fix broken link * add link * fix sidebar link
89 lines
2.0 KiB
Plaintext
89 lines
2.0 KiB
Plaintext
---
|
|
description: 'Check out available official plugins in Medusa.'
|
|
---
|
|
|
|
import DocCardList from '@theme/DocCardList';
|
|
import Icons from '@theme/Icon';
|
|
|
|
# Plugins
|
|
|
|
This section includes documentation for official Medusa plugins.
|
|
|
|
You can learn more about plugins and how they work in the [Plugins Overview documentation](../development/plugins/overview.mdx).
|
|
|
|
:::tip
|
|
|
|
Interested in creating a plugin? Learn more in the [Create Plugin documentation](../development/plugins/create).
|
|
|
|
:::
|
|
|
|
<!-- vale docs.Acronyms = NO -->
|
|
|
|
<DocCardList colSize={6} items={[
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/analytics',
|
|
label: 'Analytics',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Analytics plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/cms',
|
|
label: 'CMS',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official CMS plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/notifications',
|
|
label: 'Notifications',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Notifications plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/payment',
|
|
label: 'Payment',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Payment plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/search',
|
|
label: 'Search',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official Search plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/file-service',
|
|
label: 'File Service',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out official File Service plugins.'
|
|
}
|
|
},
|
|
{
|
|
type: 'link',
|
|
href: '/plugins/other',
|
|
label: 'Other Plugins',
|
|
customProps: {
|
|
icon: Icons['squares-plus-solid'],
|
|
description: 'Check out other official plugins.'
|
|
}
|
|
},
|
|
]} />
|
|
|
|
<!-- vale docs.Acronyms = YES -->
|