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 653ccf5 commit ffce208Copy full SHA for ffce208
src/docs/readme-updater-plugin.js
@@ -26,6 +26,11 @@ export function load (app) {
26
*/
27
function onRendererEnd (evt) {
28
const urlMappings = evt.pages?.filter(page => {
29
+ // single-module repo, single export with "readme": "none" in typedoc.json
30
+ if (page.url === 'index.html') {
31
+ return true
32
+ }
33
+
34
// single-module repo, single export
35
if (page.url === 'modules.html') {
36
return true
0 commit comments