vuepress生成文件名不对
我使用vuepress,配置文件如下:
module.exports = {
title: 'test',
description: 'test',
base: '/seadog/ui/',
markdown: {
lineNumbers: true,
// markdown-it-anchor 的选项
anchor: {permalink: false},
// markdown-it-toc 的选项
toc: {includeLevel: [2, 3, 4]},
},
themeConfig: {
lastUpdated: '最后更新',
nav: [
{
text: '首页',
link: '/'
},
{
text: 'JavaScript',
link: '/jsbook/'
},
{
text: '前沿资讯',
link: '/information/'
}
],
sidebar: {
'/jsbook/': [
'new Date()的兼容性问题及处理方法',
'单元测试',
{
title: '测试',
children: [
['test/test', 'test']
]
}
]
}
}
}
文件目录如下:
在生成的页面中,左导航栏,文件名称多了导航路径:
请问是什么原因?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
前面增加
/
试试