Farnabaz
Farnabaz
@mrleblanc101 As you can see in the issue, there is `ssr: false` in the Nuxt config. I don't have an idea about your project, so I can't tell whether this...
Did you tried passing `hostname` to `content.watch.ws` options in `nuxt.config`? Content Docs: https://content.nuxtjs.org/api/configuration#watch Listhen docs: https://github.com/unjs/listhen#hostname
You are right, sadly we didn't describe this in the content documentation yet. We should improve docs.
In Content v2 you can create custom transformers to parse and transformer. see: https://content.nuxtjs.org/api/advanced#transformers
You are generating a static website, which means that there will be no APIs. When you change the select input content will execute query and requests server to get the...
I see, Sorry for my partial explanation Currently module does not support hybrid mode, which means that you can only use it on full SSG or without SSR so if...
Content module creates a list out of all queries that executed in generation phase and store them as static files. But as you can see in this example, queries for...
Indeed, cached json is just a list of all contents. In production (inside server API) it is used to find the corresponding files based on query. But in SSG there...
Did you manage to resolve the issue? As I can tell from the error, this is related to your custom Vue component which has no template or render function
What is the value of `path`? Note that you should remove locale from `path` before passing it to `queryContent`. Also do you ming creating a simple reproduction using [Content Starter](stackblitz.com/github/nuxt/starter/tree/content)?