UNPKG

363 BJavaScriptView Raw
1module.exports = {
2 data: {
3 siteName: "Nuxt-Content"
4 },
5 dirs: [
6 ["/", {
7 isPost: false
8 }],
9 ["posts", {
10 routeName: "post",
11 permalink: ":year/:slug",
12 data: {
13 category: "Posts"
14 }
15 }],
16 ["projects", {
17 routeName: "projects-name",
18 permalink: "projects/:slug",
19 isPost: false
20 }]
21 ]
22}