Nuxt Content (Document driven) and i18n
Is there a solution to this problem now?
When it is not the default language, the data does not appear
Document not found, overwrite this content with #not-found slot in <ContentDoc>.
Config
Directory
----
--content
---id
---en
-----
similiar to this:
https://github.com/nuxt/content/issues/2003
When it is not the default language, the data does not appear
Document not found, overwrite this content with #not-found slot in <ContentDoc>.
Config
content: {
locales: ['id', 'en'],
defaultLocale: 'id'
}
Directory
----
--content
---id
---en
-----
similiar to this:
https://github.com/nuxt/content/issues/2003
GitHub
Is your feature request related to a problem? Please describe I was trying to use Document driven with localized content. the content structure is like this: en/ 1.company/ 1.about.md 2.team.md 2.n...