Search for a command to run...
In this document, you'll learn how to install and configure the Yandex Market YML Feed Generator for Medusa.
yarn add @gorgo/medusa-feed-yandex# ornpm install @gorgo/medusa-feed-yandex
Add the plugin configuration in your file of the Medusa admin application:
# ...module.exports = defineConfig({# ...modules: [{resolve: "@gorgo/medusa-feed-yandex/modules/feed",},{resolve: "@medusajs/medusa/file",options: {providers: [{resolve: "@medusajs/medusa/file-local",id: "local",options: {upload_dir: "static",backend_url: "http://localhost:9000/static"},},],},},],plugins: [{resolve: "@gorgo/medusa-feed-yandex",options: {}}],})
The plugin is only tested with Medusa's local file module ().