0.0.1 • Published 22 days ago

medusa-storefront-configuration v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
22 days ago

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.

NPM Package | Repository

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,
    },
  },
];

Test the Plugin

1. Run the following command in the directory of the Medusa backend to run the backend:

npm run start