mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-28 17:56:37 +02:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
const ICU = require("i18next-icu/i18nextICU.js");
|
|
const path = require("path");
|
|
const i18n = require("./i18n.config.js");
|
|
|
|
module.exports = {
|
|
i18n,
|
|
defaultNS: "app",
|
|
reloadOnPrerender: process.env.NODE_ENV === "development",
|
|
localePath: path.resolve("./public/locales"),
|
|
use: [new ICU()],
|
|
serializeConfig: false,
|
|
};
|