element-plus/docs/.vitepress/utils/lang.ts
三咲智子 851242e317
feat(docs): add source and contributors (#6044)
* feat(docs): add source and contributors

closes #6038

* feat(docs): ignore contributor when dev

* ci: add github token

* fix: lint

* fix: page

* fix: placeholder

* ci: remove preview
2022-04-08 00:40:25 +08:00

11 lines
314 B
TypeScript

import fs from 'fs'
import path from 'path'
import { docRoot } from '@element-plus/build'
export const languages = fs.readdirSync(path.resolve(__dirname, '../crowdin'))
export const ensureLang = (lang: string) => `/${lang}`
export const getLang = (id: string) =>
path.relative(docRoot, id).split(path.sep)[0]