Skip to content

Commit

Permalink
fix: 修复首页模块链接跳转异常
Browse files Browse the repository at this point in the history
  • Loading branch information
mmdapl committed Oct 29, 2024
1 parent f2fb044 commit 4311662
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vitepress/sidebar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ export async function getCoreProjectData(): Promise<VipProject[]> {
...basePkg,
// 约定:图标+文字
id: text.split(' ')[0],
changelog: `../packages/${pkgDirName}/changelog.html`,
readme: `../changelogs/${pkgDirName}/index.html`,
changelog: `../changelogs/${pkgDirName}/changelog.html`,
readme: `../packages/${pkgDirName}/index.html`,
sourceCode: `https://github.com/142vip/core-x/tree/main/packages/${pkgDirName}/`,
})
}
Expand All @@ -132,7 +132,7 @@ export async function getExampleDemoTableData() {
...pkg,
private: true,
id: '🤡',
changelog: `../apps/${pkgDirName}/changelog.html`,
changelog: `../changelogs/${pkgDirName}/changelog.html`,
readme: `../apps/${pkgDirName}/index.html`,
sourceCode: `https://github.com/142vip/core-x/tree/main/apps/${pkgDirName}/`,
})
Expand Down

0 comments on commit 4311662

Please sign in to comment.