Files
chatbot-ui/next-i18next.config.js
T
Jungley 92eab6c634 feat: Add i18n support for Chinese language (#142)
* feat: Add i18n support for Chinese language

* fix: locale not working in Docker environment
2023-03-25 09:42:48 -06:00

13 lines
247 B
JavaScript

const path = require("path");
module.exports = {
i18n: {
defaultLocale: "en",
locales: ["en", "zh"],
},
localePath:
typeof window === "undefined"
? require("path").resolve("./public/locales")
: "/public/locales",
};