Skip to content

Commit

Permalink
翻译文件
Browse files Browse the repository at this point in the history
  • Loading branch information
zds-s committed Dec 2, 2024
1 parent fe6a2a6 commit ceecfff
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .vitepress/src/en/nav.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
import {DefaultTheme} from "vitepress";

const nav:DefaultTheme.NavItem[] = [
{ text: 'Guide', link: '/en/guide' },
{ text: 'Frontend', link: '/en/front' },
{ text: 'Backend', link: '/en/backend' },
{ text: 'Frequently Asked Questions', link: '/en/faq' },
{ text: 'Old Version Documentation', link: 'https://docv2.mineadmin.com' },
{ text: 'Guide', link: '/en/guide/introduce/mineadmin' },
{ text: 'Frontend', link: '/en/front/base/concept' },
{ text: 'Backend', link: '/en/backend/index' },
{ text: 'Plugins', link: '/en/plugin/index' },
{ text: 'FAQ', link: '/en/faq/index' },
{ text: 'More' ,items:[
{ text: 'Old Version Documentation', link: 'https://docv2.mineadmin.com' },
{ text: 'Hyperf Component Library', link: 'https://hyperf.fans/' },
{ text: 'Fantastic-admin Framework', link: 'https://fantastic-admin.hurui.me/' },
]}
]

export default nav
33 changes: 33 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"compilerOptions": {
"jsx": "preserve",
"lib": [
"DOM",
"ESNext"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"removeComments": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"**/.vitepress/**/*.ts",
"**/.vitepress/**/*.mts",
"**/.vitepress/**/*.vue"
],
"exclude": [
"node_modules"
]
}

0 comments on commit ceecfff

Please sign in to comment.