@movk/nuxt-docs 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app/app.vue CHANGED
@@ -55,7 +55,7 @@ provide('navigation', rootNavigation)
55
55
  <Footer />
56
56
 
57
57
  <ClientOnly>
58
- <LazyUContentSearch :files="files" :navigation="navigation" />
58
+ <LazyUContentSearch :files="files" :navigation="rootNavigation" />
59
59
  </ClientOnly>
60
60
  </template>
61
61
  </div>
package/content.config.ts CHANGED
@@ -37,10 +37,10 @@ export default defineContentConfig({
37
37
  })),
38
38
  docs: defineCollection(asSeoCollection({
39
39
  type: 'page',
40
- source: {
40
+ source: [{
41
41
  cwd,
42
42
  include: 'docs/**/*'
43
- },
43
+ }],
44
44
  schema: z.object({
45
45
  links: z.array(Button),
46
46
  category: z.string().optional(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@movk/nuxt-docs",
3
3
  "type": "module",
4
- "version": "1.1.1",
4
+ "version": "1.1.2",
5
5
  "private": false,
6
6
  "description": "An elegant documentation theme for Nuxt, powered by Nuxt UI and Nuxt Content.",
7
7
  "author": "YiXuan <mhaibaraai@gmail.com>",