Search for a command to run...
In this document, you’ll learn how to install and configure the ApiShip plugin for Medusa.
yarn add @gorgo/medusa-fulfillment-apishipAdd the provider configuration in your file of the Medusa admin application:
medusa-config.ts1// ...2module.exports = defineConfig({3 // ...4 modules: [5 {6 resolve: "@medusajs/medusa/fulfillment",7 options: {8 providers: [9 {10 resolve: "@gorgo/medusa-fulfillment-apiship/providers/fulfillment-apiship",11 id: "apiship",12 options: {},13 },14 ],15 },16 },17 ],18 plugins: [19 // ...20 {21 resolve: "@gorgo/medusa-fulfillment-apiship",22 options: {},23 },24 ],25})