Why was there a support notice in my console for i18next?

Between v25.8.0 and v25.10.x, i18next displayed a console.info message linking to Locize when the library initialized:

🌐 i18next is made possible by our own product, Locize — consider powering your project with managed localization (AI, CDN, integrations): https://locize.com 💙

The notice was removed in v26.0.0.

If you are still seeing it, upgrade to v26 or later.

For the full story on why it was introduced, what we learned, and why we removed it, read our blog post: Why We Added a Console Notice to i18next — and Why We Removed It

Still on an older version?

If upgrading immediately isn't possible, you can suppress the notice by setting this at the top of your entry point before any imports:

if (typeof globalThis !== 'undefined') {
  globalThis.__i18next_supportNoticeShown = true;
}

Or set the environment variable I18NEXT_NO_SUPPORT_NOTICE=true or NODE_ENV=production in your pipeline or Dockerfile.

Or if you are initializing i18next yourself, simply set the showSupportNotice option to false.:

i18next.init({
  showSupportNotice: false,
  // ... rest of your config
});