api
CK2020/05/29
This is api.
# another-home-path.md
---
title: 指定首页
home: true
---
// .vuepress/config.ts
import { defineUserConfig } from 'vuepress'
import { recoTheme } from 'vuepress-theme-reco'
export default defineUserConfig({
theme: recoTheme({
home: '/another-home-path'
})
})