Package Exports
- @appateam/medusa-plugin-product-reviews
- @appateam/medusa-plugin-product-reviews/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@appateam/medusa-plugin-product-reviews) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Product reviews plugin
Add product reviews to your Medusa store
Under development, use at your own risk!
Features
- Show customer reviews
- Create customer review with either:
- just a 1-5 rating
- a 1-5 rating and a written review
Prerequisites
How to Install
1. Run the following command in the directory of the Medusa backend:
npm install @appateam/medusa-plugin-product-reviews
2 . In medusa-config.js
add the following at the end of the plugins
array:
const plugins = [
// ...
{
resolve: `@appateam/medusa-plugin-product-reviews`,
options: {
enableUI: true
}
},
]