Medusa plugin to add customer queries functionality in the medusa.
- Storefront api to submit the query.
- Admin panel ui to show customer query.
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,
},
},
];
1. Run the following command in the directory of the Medusa backend to run the backend:
npm run start