mirror of
https://github.com/wavetermdev/docusaurus-og.git
synced 2026-08-05 13:46:35 -07:00
fix: navbar external links not appearing.
This commit is contained in:
@@ -70,9 +70,6 @@ const config = {
|
||||
},
|
||||
items: [
|
||||
{
|
||||
type: 'doc',
|
||||
docId: 'index',
|
||||
position: 'left',
|
||||
href: 'https://blog.codex.storage/',
|
||||
label: 'Blog',
|
||||
},
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function NavbarContent(): JSX.Element {
|
||||
|
||||
const localeDropdown = items.find((item) => item.type === 'localeDropdown')
|
||||
const links = items.filter(
|
||||
(item) => item.type === 'doc' || !!(item as any).to,
|
||||
(item) => item.type === 'doc' || !!(item as any).to || !!item.href,
|
||||
)
|
||||
|
||||
const mobileSidebar = useNavbarMobileSidebar()
|
||||
|
||||
Reference in New Issue
Block a user