* docs: update admin extension docs * eslint fixes * fix broken links * fix broken link * added admin upgrade guide * fix lint errors
5.0 KiB
description
| description |
|---|
| In this document, you'll learn about the different ways you can configure the admin dashboard for your custom use cases. |
Admin Custom Configuration
In this document, you'll learn about the different ways you can configure the admin dashboard for your custom use cases.
Admin CLI
Build Command Options
The build command in the admin CLI allows you to manually build the admin dashboard. If you intend to use it, you should typically add it to the package.json of the Medusa backend:
{
"scripts": {
// other scripts...
"build:admin": "medusa-admin build"
}
}
You can add the following options to the medusa-admin build command:
--deployment: a boolean value indicating that the build should be ready for deployment. When this option is added, options are not loaded frommedusa-config.jsanymore, and it means the admin will be built to be hosted on an external host. For example,medusa-admin build --deployment.--backendor-b: a string specifying the URL of the Medusa backend. This can be useful with the--deploymentoption. The default here is the value of the environment variableMEDUSA_ADMIN_BACKEND_URL. For example,medusa-admin build --deployment --backend example.com--out-diror-o: a string specifying a custom path to output the build files to. By default, it will be thebuilddirectory. For example,medusa-admin --deployment --out-dir public.--includeor-i: a list of strings of paths to files you want to include in the build output. It can be useful if you want to inject files that are relevant to your external hosting, such as adding a200.htmlfile that is needed for redirects on Surge. For example,medusa-admin --deployment --include 200.html--include-distor-d: a string specifying the path to copy the files specified in--includeto. By default, the files are copied to the root of the build directory. You can use this option to change that. For example,medusa-admin --deployment --include 200.html --include-dist static.
Dev Command Options
The dev command in the admin CLI allows you to run the admin dashboard in development separately from the Medusa backend. If you intend to use it, you should typically add it to the package.json of the Medusa backend:
{
"scripts": {
// other scripts...
"dev:admin": "medusa-admin dev"
}
}
You can add the following options to the medusa-admin dev command:
--backendor-b: a string specifying the URL of the Medusa backend. By default, it's the value of the environment variableMEDUSA_ADMIN_BACKEND_URL. For example,medusa-admin dev --backend example.com.--portor-p: the port to run the admin on. By default, it's7001. For example,medusa-admin dev --port 8000.
Custom Environment Variables
If you want to set environment variables that you want to access in your admin dashboard's customizations (such as in widgets or UI routes), your environment variables must be prefixed with MEDUSA_ADMIN_. Otherwise, it won't be loaded within the admin.
For example:
MEDUSA_ADMIN_CUSTOM_API_KEY=123...
Custom Webpack Configurations
:::note
Plugins cannot include webpack customizations.
:::
The admin dashboard uses Webpack to define the necessary configurations for both the core admin plugin and your extensions. So, for example, everything works out of the box with Tailwind CSS, the admin dependencies, and more.
However, you may have some advanced case where you need to tweak the webpack configurations. For example, you want to support styling your extensions with CSS Modules.
For such use cases, you can extend the default webpack configurations defined in the admin plugin to add your custom configurations.
To do that, create the file src/admin/webpack.config.js that uses the withCustomWebpackConfig method imported from @medusajs/admin to export the extended configurations. The method accepts a callback function that must return an object of webpack configuration. The callback function accepts two parameters:
config: the first parameter is an object that holds the default webpack configuration. You should add your configurations to this object, then return it. Not returning the default configurations will lead to the application breaking.webpack: the second parameter is the webpack instance.
:::warning
This is an advanced feature and requires knowledge of configuring webpack. If configured wrongly, it may lead to the admin application breaking.
:::
For example:
import { withCustomWebpackConfig } from "@medusajs/admin"
export default withCustomWebpackConfig((config, webpack) => {
config.plugins.push(
new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production"),
API_URL:
JSON.stringify("https://api.medusa-commerce.com"),
},
})
)
return config
})