fumadocs-core 15.6.0 → 15.6.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/dist/search/server.js +1 -1
- package/package.json +1 -1
package/dist/search/server.js
CHANGED
|
@@ -281,7 +281,7 @@ function createI18nSearchAPI(type, options) {
|
|
|
281
281
|
return createEndpoint({
|
|
282
282
|
async export() {
|
|
283
283
|
const map = await get;
|
|
284
|
-
const entries =
|
|
284
|
+
const entries = Array.from(map.entries()).map(async ([k, v]) => [
|
|
285
285
|
k,
|
|
286
286
|
await v.export()
|
|
287
287
|
]);
|