mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2024-12-22 20:46:01 +08:00
15 lines
301 B
TypeScript
15 lines
301 B
TypeScript
import type { LinguiConfig } from "@lingui/conf";
|
|
|
|
const config: LinguiConfig = {
|
|
locales: ["en-US", "de-DE"],
|
|
sourceLocale: "en-US",
|
|
catalogs: [
|
|
{
|
|
path: "<rootDir>/apps/client/src/locales/{locale}",
|
|
include: ["<rootDir>/apps/client/src"],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|