Skip to content

Commit 42cbd31

Browse files
authoredJun 21, 2022
fix(theme): don't show sidebar on home layout (#825) (#829)
1 parent 9bc4330 commit 42cbd31

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎src/client/theme-default/composables/sidebar.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ export function useSidebar() {
1616
})
1717

1818
const hasSidebar = computed(() => {
19-
return frontmatter.value.sidebar !== false && sidebar.value.length > 0
19+
return (
20+
frontmatter.value.sidebar !== false &&
21+
sidebar.value.length > 0 &&
22+
frontmatter.value.layout !== 'home'
23+
)
2024
})
2125

2226
function open() {

0 commit comments

Comments
 (0)
Please sign in to comment.