fix(theme): remove sidebar console

This commit is contained in:
pengzhanbo 2023-02-14 05:11:02 +08:00
parent 299f281baa
commit ad3140fa75
2 changed files with 0 additions and 12 deletions

View File

@ -57,17 +57,6 @@ export default defineUserConfig({
},
},
},
comment: {
provider: 'Giscus',
comment: true,
repo: 'pengzhanbo/pengzhanbo-blog-vuepress',
repoId: 'MDEwOlJlcG9zaXRvcnkxNDgwMzY4MDc=',
category: 'Announcements',
categoryId: 'DIC_kwDOCNLcx84COcVd',
mapping: 'pathname',
reactionsEnabled: true,
inputPosition: 'top',
},
},
}),
})

View File

@ -119,7 +119,6 @@ export function useSidebarControl(item: ComputedRef<NotesSidebarItem>) {
})
const isActiveLink = computed(() => {
console.log('pl:', page.value.path, ' il:', item.value.link)
return isActive(page.value.path, item.value.link)
})