We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c8613d commit 2fd5f45Copy full SHA for 2fd5f45
docusaurus.config.ts
@@ -100,7 +100,9 @@ const config: Config = {
100
const linksPath = path.join(contentPath, "doc-links.yml");
101
const items = YAML.parse(readFileSync(linksPath, "utf-8")).map(linkToItem);
102
for (const id of idSet) {
103
- logger.warn(`"${path.join(versionName, 'doc-links.yml')}" has no entry for id "${id}"`);
+ if (!id.startsWith("common/")) {
104
+ logger.warn(`"${path.join(versionName, 'doc-links.yml')}" has no entry for id "${id}"`);
105
+ }
106
}
107
return items;
108
},
0 commit comments