/blog with the project also having two other layers of /core and /site that holds other site components, pages, and layouts. I've tried following the Nuxt Content docs to set things up in my /blog layer with modules: ['@nuxt/content'] being added to my /blog 's nuxt.config.ts file and have the suggested content.config.ts file setup. Also have a /blog/pages/[...slug].vue file with code to hopefully match the route and serve up the proper markdown content. The markdown content does live in /blog/content and I think the markdown files have the proper setup.[site.com]/ to display components and stuff from my /site/pages/index.vue - which it does[site.com]/mypost would render content from a /blog/content/mypost.md file but looks like no content is found. Actually, when spinning up the dev server I do see that @nuxt/content says it processed 2 collections with 0 files. So my guess is I don't have the sourcing of the files set properly.nuxt.config.ts and content.config.ts files of the /blog layer but I keep getting outdated suggestions that don't seem compatible with the type checking that is happening. I also tried adding a /blog/pages/index.vue but that isn't what I want since it overrides my /site/pages/index.vue and I want to create url that matches the file name. I've also tried different variations of source like '**', '/blog/**, /blog/content/** in the defineCollection() of my content.config.ts file with no luck.