UNPKG

@gorgo/medusa-feed-yandex

Version:

A Medusa plugin that generates a product feed in YML (Yandex Market Language) format

18 lines (17 loc) 495 B
import { InitOptions } from "i18next" import translations from "./translations" export const defaultI18nOptions: InitOptions = { debug: process.env.NODE_ENV === "development", fallbackLng: "en", interpolation: { escapeValue: false, }, detection: { caches: ["cookie", "localStorage", "header"], lookupCookie: "lng", lookupLocalStorage: "lng", order: ["cookie", "localStorage", "header"], }, resources: translations, supportedLngs: Object.keys(translations), }