I hav nuxt content set up, and this nuxt.config.td
import { defineContentConfig, defineCollection } from '@nuxt/content'
export default defineContentConfig({
collections: {
content: defineCollection({
type: 'page',
source: '**'
})
}
})
I have a file called file.md in /app/content but when I go to my app /file I get a 404. nuxt content says it parses a file when starting up dev server, but the path isn't accessible. Docs say that it should be picked up and added as a route automatically