@farming-labs/docs 0.0.7 → 0.0.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.
- package/dist/index.d.mts +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -967,6 +967,12 @@ interface DocsConfig {
|
|
|
967
967
|
entry: string;
|
|
968
968
|
/** Path to the content directory. Defaults to `entry` value. */
|
|
969
969
|
contentDir?: string;
|
|
970
|
+
/**
|
|
971
|
+
* Set to `true` when building for full static export (e.g. Cloudflare Pages).
|
|
972
|
+
* When using `output: 'export'` in Next.js, the `/api/docs` route is not generated.
|
|
973
|
+
* Set `ai.enabled: false` and optionally rely on client-side search or leave search disabled.
|
|
974
|
+
*/
|
|
975
|
+
staticExport?: boolean;
|
|
970
976
|
/** Theme configuration - single source of truth for UI */
|
|
971
977
|
theme?: DocsTheme;
|
|
972
978
|
/**
|