1.5.0 • Published 11 months ago
medusa-customer-queries v1.5.0
Medusa Customer Queries
Medusa plugin to add customer queries functionality in the medusa.
Features
- Storefront api to submit the query.
- Admin panel ui to show customer query.
Prerequisites
How to Install
1. Run the following command in the directory of the Medusa backend:
npm install medusa-customer-queries
2. In medusa-config.js
add the following at the end of the plugins
array:
const plugins = [
// ...
{
resolve: `medusa-customer-queries`,
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