Skip to content

Commit d32318b

Browse files
authored
Merge pull request #145 from brian7704/babel
Internationalization
2 parents b03af77 + f972726 commit d32318b

26 files changed

+17105
-233
lines changed

i18next.config.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { defineConfig } from 'i18next-cli';
2+
3+
export default defineConfig({
4+
locales: [
5+
"en",
6+
"de",
7+
"fr",
8+
"es",
9+
"pt",
10+
"uk"
11+
],
12+
extract: {
13+
input: "src/**/*.{js,jsx,ts,tsx}",
14+
output: "public/locales/{{language}}/{{namespace}}.json"
15+
}
16+
});

0 commit comments

Comments
 (0)