📦 Installation
This guide walks you through installing and configuring the Product Collection Images Plugin in your Medusa backend.
1. Install the Plugin​
Install the package via npm:
npm install @alphabite/medusa-collection-images
2. Register the Plugin​
Add the plugin to your medusa.config.ts
or medusa-config.js
:
export default {
plugins: [
{
resolve: "@alphabite/medusa-collection-images",
},
],
};
3. Run Database Migrations​
The plugin adds new tables to support product collection images. Run the migration after registration:
npx medusa db:migrate
✅ Compatibility​
- Requires Medusa v2.5.0 or higher
- Adds database tables (migration required)
- Compatible with both JS and TypeScript projects
🚀 Next Step​
👉 Explore Usage