Skip to content

Commit

Permalink
Merge pull request #21 from tashian/nested-routes
Browse files Browse the repository at this point in the history
feat: anticipate nested routes in the manifest.json
  • Loading branch information
PatrickHeneise authored Jun 14, 2023
2 parents 87f045b + 8a81976 commit 8957f7d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export function getPaths(nextRoutes, options, carry = []) {
)
}
carry.push(removeFromLast(path, extension))
} else if (routes) {
}
if (routes) {
getPaths(routes, options, carry)
}
})
Expand Down

0 comments on commit 8957f7d

Please sign in to comment.