initReactI18next
-
[React-i18next] 웹페이지에 '더 효율적으로' 다국어 적용하기 (with: typescript)프론트엔드 개발자가 될거야./라이브러리 2023. 3. 9. 17:29
불러와야하는 json파일이 길 때, json파일을 항상 호출하는 것은 매우 비효율적이다. 이에 i18next에는 네트워크를 통해 번역 파일을 서버에서 가져오게 하는 기능이 있다. 1. 초기세팅 import i18n from "i18next"; import { initReactI18next } from "react-i18next"; import HttpBackend from "i18next-http-backend"; i18n .use(initReactI18next) .use(HttpBackend) .init({ fallbackLng: false, // 지원하지 않는 언어 또는 키가 사용되었을 때 fallback 언어로 사용할 언어 설정 fallbackNS: false, // fallback 언어로 사용할 ..