website: add vi_VN translation (#91)

Signed-off-by: hmtheboy154 <buingoc67@gmail.com>

Signed-off-by: hmtheboy154 <buingoc67@gmail.com>
This commit is contained in:
Huy Minh
2023-01-21 05:37:36 +07:00
committed by GitHub
parent b7bed72c6d
commit ec0158e2e8
8 changed files with 383 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import { defineConfig } from 'vitepress'
import en from './en'
import zh_CN from './zh_CN'
import vi_VN from './vi_VN'
export default defineConfig({
locales: {
@@ -15,6 +16,12 @@ export default defineConfig({
lang: zh_CN.lang,
themeConfig: zh_CN.themeConfig,
description: zh_CN.description
},
vi_VN: {
label: 'Tiếng Việt',
lang: vi_VN.lang,
themeConfig: vi_VN.themeConfig,
description: vi_VN.description
}
}
})