2021-09-23 08:49:17 +00:00
|
|
|
const path = require("path");
|
2022-07-22 17:27:06 +00:00
|
|
|
const i18nConfig = require("@calcom/config/next-i18next.config");
|
2021-09-23 08:49:17 +00:00
|
|
|
|
2022-05-06 17:21:30 +00:00
|
|
|
/** @type {import("next-i18next").UserConfig} */
|
|
|
|
const config = {
|
2022-07-22 17:27:06 +00:00
|
|
|
...i18nConfig,
|
2021-09-23 08:49:17 +00:00
|
|
|
localePath: path.resolve("./public/static/locales"),
|
|
|
|
};
|
2022-05-06 17:21:30 +00:00
|
|
|
|
|
|
|
module.exports = config;
|