create-fumadocs-app 13.4.6 → 13.4.8

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.
@@ -60,7 +60,7 @@ function tryGitInit(root) {
60
60
  }
61
61
 
62
62
  // versions.json
63
- var versions_default = { "fumadocs-core": "13.4.6", "fumadocs-ui": "13.4.6", "fumadocs-mdx": "10.0.1", "@fumadocs/content-collections": "1.1.4" };
63
+ var versions_default = { "fumadocs-core": "13.4.8", "fumadocs-ui": "13.4.8", "fumadocs-mdx": "10.0.2", "@fumadocs/content-collections": "1.1.4" };
64
64
 
65
65
  // ../create-app-versions/package.json
66
66
  var package_default = {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  create
3
- } from "./chunk-42HKMHLK.js";
3
+ } from "./chunk-YRYZNOTH.js";
4
4
  export {
5
5
  create
6
6
  };
package/dist/index.js CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  create,
4
4
  cwd,
5
5
  getPackageManager
6
- } from "./chunk-42HKMHLK.js";
6
+ } from "./chunk-YRYZNOTH.js";
7
7
 
8
8
  // src/index.ts
9
9
  import { existsSync } from "node:fs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-fumadocs-app",
3
- "version": "13.4.6",
3
+ "version": "13.4.8",
4
4
  "description": "Create a new documentation site with Fumadocs",
5
5
  "keywords": [
6
6
  "NextJs",
@@ -1,10 +1,11 @@
1
1
  import { type HomeLayoutProps } from 'fumadocs-ui/home-layout';
2
2
 
3
3
  /**
4
- * Shared layout configuration
4
+ * Shared layout configurations
5
5
  *
6
- * you cna configure layouts individually from:
7
- * Home Layout:
6
+ * you can configure layouts individually from:
7
+ * Home Layout: app/(home)/layout.tsx
8
+ * Docs Layout: app/docs/layout.tsx
8
9
  */
9
10
  export const baseOptions: HomeLayoutProps = {
10
11
  nav: {
@@ -4,6 +4,7 @@ import { createSearchAPI } from 'fumadocs-core/search/server';
4
4
  export const { GET } = createSearchAPI('advanced', {
5
5
  indexes: source.getPages().map((page) => ({
6
6
  title: page.data.title,
7
+ description: page.data.description,
7
8
  structuredData: page.data.structuredData,
8
9
  id: page.url,
9
10
  url: page.url,