medusa-storefront-configuration
v1.8.0
Published
Medusa plugin to add storefront configuration option in admin panel.
Downloads
15
Maintainers
Readme
Medusa Storefront Configuration
The Medusa plugin is designed to add functionality that allows users to customize storefront branding and modify the landing page UI directly from the admin panel.
Features
- Storefront customization admin panel page ui.
- Apis to store storefront branding and customization data to database for admin panel.
- Api for storefront to show dynamic ui to landing page.
Prerequisites
How to Install
1. Run the following command in the directory of the Medusa backend:
npm install medusa-storefront-configuration
2. In medusa-config.js
add the following at the end of the plugins
array:
const plugins = [
// ...
{
resolve: `medusa-storefront-configuration`,
options: {
enableUI: true,
useCloudStorageSettings: true,
},
},
];
Test the Plugin
1. Run the following command in the directory of the Medusa backend to run the backend:
npm run start