Search for a command to run...
In this document, you'll learn how to install and configure the 1C:Enterprise integration plugin for Medusa.
yarn add @gorgo/medusa-1cAdd the plugin configuration in your file of the Medusa admin application:
medusa-config.js1# ...2module.exports = defineConfig({3 # ...4 plugins: [5 # ...6 {7 resolve: "@gorgo/medusa-1c",8 options: {}9 }10 ],11})