Dull Object Specialist
Nuxt Content - Navigation not rendered properly to generated static site
I have a few pages in the
/content
tree
I marked the index.md pages wit
And the following code in my app.vue
-- Home
+-- Home
+- folder 1
+-- folder 1
+-- other
```
Why the difference? Is there any setting I'm missing?6 replies
Nuxt Content markdown with Nuxt schema-org
I'm looking for any information how to get schema.org JSON+LD markup into pages written with Nuxt Content
I have installed the
@nuxtjs/seo
module and with it the nuxt-schema-org and defined the global config in nuxt.config.ts
How do I add page specific schema, such as "author", "about", ..."
What are the ways to connect those two?
- front matter that is picked up?
- do I need to add MDC components?
- How do I do this?
- do I need to add a script to the
pages/[...slug].vue
Are there any examples around I could follow?3 replies
Linking between MD documents
How am I supposed to make the links between documents?
/
is index.md
and when generated as prerender it becomes /index.html
[folder 1]('/folder1')
is supposed to serve /folder1/index.html
?
or ist it [folder 1]('/folder1/')
?
Or is there the ability to just link to the md file [folder 1](/folder1/index.md)
and the backend figures out the details when rendering the page?3 replies