So you should import translation.js and then put t...
# support-questions-legacy
r
So you should import translation.js and then put that into:
Copy code
js
import translation from "./translations.js";

i18n.user(...).init({
  resources: {
    en: {
      translation: translation
    }
  }
})
2 Views