mirror of
https://github.com/maputnik/editor.git
synced 2026-05-04 23:30:18 +00:00
10 lines
296 B
TypeScript
10 lines
296 B
TypeScript
import { defineConfig } from "i18next-cli";
|
|
|
|
export default defineConfig({
|
|
locales: ["de", "fr", "he", "it", "ja", "ko", "zh"],
|
|
extract: {
|
|
input: ["src/**/*.{js,jsx,ts,tsx}"],
|
|
output: "src/locales/{{language}}/{{namespace}}.json",
|
|
defaultValue: "__STRING_NOT_TRANSLATED__"
|
|
}
|
|
}); |