blob: 4b1a3621945c3762b86e3285d3828ccd2824dfc7 (
plain) (
blame)
1
2
3
4
5
6
7
|
export default async () => {
const { $content } = require('@nuxt/content')
const files = await $content({ deep: true }).only(['path'])
.fetch()
return files.map(file => (file.path === '/index' ? '/' : file.path))
}
|