Skip to main content

📦 Installation

This guide walks you through installing and configuring the Product Category Images Plugin in your Medusa backend.


1. Install the Plugin​

Install the package via npm:

npm install @alphabite/medusa-category-images

2. Register the Plugin​

Add the plugin to your medusa.config.ts or medusa-config.js:

export default {
plugins: [
{
resolve: "@alphabite/medusa-category-images",
},
],
};

3. Run Database Migrations​

The plugin adds new tables to support product category 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