mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-24 02:28:07 +08:00
10 lines
144 B
JavaScript
10 lines
144 B
JavaScript
// .vuepress/config.js
|
|
module.exports = {
|
|
themeConfig: {
|
|
sidebar: "auto",
|
|
nav: [
|
|
{ text: '回首页', link: '/' },
|
|
]
|
|
}
|
|
};
|