diff --git a/.gitignore b/.gitignore index f935a37..1499620 100644 --- a/.gitignore +++ b/.gitignore @@ -82,3 +82,5 @@ dist # Service worker sw.* + +.DS_store \ No newline at end of file diff --git a/components/Sidebar.vue b/components/Sidebar.vue index 5eb8e08..8157e37 100644 --- a/components/Sidebar.vue +++ b/components/Sidebar.vue @@ -16,7 +16,7 @@ export default { }, created() { this.menuEntries = store.map(({ title, slug }) => ({ - slug: `/categories/${slug}`, + slug: '/categories' + slug, title })) }