add .DS_Store to .gitignore & fix routing

This commit is contained in:
Kevin Van Der Werff
2019-06-15 21:59:05 +02:00
parent fad6dc653e
commit 167edb2d57
2 changed files with 3 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ export default {
},
created() {
this.menuEntries = store.map(({ title, slug }) => ({
slug: `/categories/${slug}`,
slug: '/categories' + slug,
title
}))
}