I'm trying to create a custom route in Nuxt with the following nuxt.config.js
:
router: {
base: '/',
router: {
extendRoutes (routes, resolve) {
routes.push({
name: 'custom',
path: 'here-i-am',
component: resolve(__dirname, 'pages/Slug.vue')
})
}
}
},
Though, when I visit localhost:3000/here-i-am - it is throwing: This page cannot be found.
I have created Slug.vue
under the /pages
directory.
Am I missing something else? I have tried to rerun the compiler.