pengzhanbo 4d2361a704
feat(theme)!: add collections support (#704)
* feat(theme)!: add collection support
2025-10-07 23:13:09 +08:00

36 lines
741 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: sitemap
icon: mdi:sitemap-outline
createTime: 2024/03/02 16:47:00
permalink: /guide/sitemap/
---
## 使用
主题提供了开箱即用的配置,为 站点生成 `sitemap.xml` 文件。
要启用它,需要进行以下配置:
```ts title=".vuepress/config.ts"
export default defineUserConfig({
theme: plumeTheme({
hostname: 'http://your_site_url',
})
})
```
如需要自定义 sitemap可以通过 `plugins.sitemap` 配置来实现。
```ts title=".vuepress/config.ts"
export default defineUserConfig({
theme: plumeTheme({
plugins: {
sitemap: {
// ... sitemap 配置
}
}
})
})
```
完整配置请查看 [文档](https://ecosystem.vuejs.press/zh/plugins/seo/sitemap/config.html)