feat(preset-classic): exclude debug plugin routes from sitemap (#7122)

This commit is contained in:
Alexey Pyltsyn 2022-04-07 13:59:47 +03:00 committed by GitHub
parent bfbc78e52a
commit 0963bff5e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 10 deletions

View file

@ -7,6 +7,10 @@
/// <reference types="@docusaurus/module-type-aliases" />
declare module '@docusaurus/plugin-debug' {
export const routeBasePath: string;
}
declare module '@theme/DebugConfig' {
export default function DebugMetadata(): JSX.Element;
}