Files
medusa-store/www/apps/docs/content/upgrade-guides/admin/7-0-0.md
Shahed Nasser 547b16ead5 docs: fix code block titles (#5733)
* docs: fix code block titles

* remove console

* fix build error
2023-11-27 16:08:10 +00:00

1.6 KiB

description, sidebar_label, sidebar_custom_props
description sidebar_label sidebar_custom_props
Migrate to v7.0.0 of the admin that supports Admin Extensions v7.0.0
iconName
computer-desktop-solid

Medusa Admin: v7.0.0

Version 7.0.0 introduces Admin Extensions, which were previously available as a beta version. By upgrading to this version, you'll be able to create admin widgets, UI routes, and setting pages.

This version also introduces a breaking change to the path configuration of the admin plugin.


How to Update

Run the following command in the root directory of your Medusa backend to update the admin plugin:

npm install @medusajs/admin@7.0.0

Actions Required

Path Configuration

Previously, the path configuration of the admin plugin set in medusa-config.js expected the path to not include a backslash / at its beginning or its end.

Starting from v7.0.0 of @medusajs/admin, the path configuration is required to start with a /, but not end with one.

For example, if you've set the admin configuration as follows:

const plugins = [
  // ...
  {
    resolve: "@medusajs/admin",
    /** @type {import('@medusajs/admin').PluginOptions} */
    options: {
      path: "admin",
      // ...
    },
  },
]

You should change the value of path to /admin:

const plugins = [
  // ...
  {
    resolve: "@medusajs/admin",
    /** @type {import('@medusajs/admin').PluginOptions} */
    options: {
      path: "/admin",
      // ...
    },
  },
]