-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathlunaria.config.json
47 lines (47 loc) · 1 KB
/
lunaria.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"$schema": "./node_modules/@lunariajs/core/config.schema.json",
"outDir": "./dist/_translations",
"ignoreKeywords": ["@ignore", "[ci]", "[format]"],
"repository": {
"name": "kongying-tavern/docs"
},
"defaultLocale": {
"label": "简体中文",
"lang": "zh"
},
"locales": [
{
"label": "English",
"lang": "en"
},
{
"label": "日本語",
"lang": "ja"
}
],
"files": [
{
"location": "src/**/*.md",
"pattern": "src/@lang/@path",
"ignore": [
"public/",
"fr/",
"src/zh/staff.md",
"src/zh/md-enhance-guide.md",
"src/zh/team.md",
"src/zh/announcement.md",
"src/zh/blog/[id].md"
],
"type": "universal"
},
{
"location": ".vitepress/locales/**/*.ts",
"pattern": ".vitepress/locales/@lang/@path",
"ignore": [
".vitepress/locales/types.ts",
".vitepress/locales/common/LanguageSuggestBar.ts"
],
"type": "universal"
}
]
}