mirror of
https://github.com/facebook/docusaurus.git
synced 2025-04-30 10:48:05 +02:00
824 B
824 B
id | title | slug |
---|---|---|
plugin-sitemap | 📦 plugin-sitemap | /api/plugins/@docusaurus/plugin-sitemap |
This plugin creates sitemap for your site so that search engine crawlers can crawl your site more accurately.
Installation
npm install --save @docusaurus/plugin-sitemap
:::tip
If you have installed @docusaurus/preset-classic
, you don't need to install it as a dependency. You can also configure it through the classic preset options instead of doing it like below.
:::
Configuration
module.exports = {
plugins: [
[
'@docusaurus/plugin-sitemap',
{
changefreq: 'weekly',
priority: 0.5,
trailingSlash: false,
},
],
],
};