Search for a command to run...
In this document, you’ll learn how to install and configure the ApiShip fulfillment provider for Medusa.
yarn add @gorgo/medusa-fulfillment-apiship# ornpm install @gorgo/medusa-fulfillment-apiship
Add the provider configuration in your file of the Medusa admin application:
// ...module.exports = defineConfig({// ...modules: [{resolve: "@medusajs/medusa/fulfillment",options: {providers: [{resolve: "@gorgo/medusa-fulfillment-apiship/providers/fulfillment-apiship",id: "apiship",options: {},},],},},],plugins: [// ...{resolve: "@gorgo/medusa-fulfillment-apiship",options: {},},],})