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.
|
|
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 = {
|
package/dist/create-app.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { type HomeLayoutProps } from 'fumadocs-ui/home-layout';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* Shared layout
|
|
4
|
+
* Shared layout configurations
|
|
5
5
|
*
|
|
6
|
-
* you
|
|
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,
|