nuxt-ai-ready 1.7.9 → 1.7.10
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/chunks/agent-skills.mjs +1 -1
- package/dist/chunks/prerender.mjs +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/server/utils/markdown-request.js +2 -1
- package/dist/shared/{nuxt-ai-ready.DF6WiyQh.mjs → nuxt-ai-ready.jeGqwuW1.mjs} +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { createHash } from 'node:crypto';
|
|
|
2
2
|
import { realpath, readFile } from 'node:fs/promises';
|
|
3
3
|
import { resolve, isAbsolute, relative, sep } from 'node:path';
|
|
4
4
|
import { parseDocument } from 'yaml';
|
|
5
|
-
import { A as AGENT_SKILLS_SCHEMA } from '../shared/nuxt-ai-ready.
|
|
5
|
+
import { A as AGENT_SKILLS_SCHEMA } from '../shared/nuxt-ai-ready.jeGqwuW1.mjs';
|
|
6
6
|
import 'node:module';
|
|
7
7
|
import '@nuxt/kit';
|
|
8
8
|
import 'defu';
|
|
@@ -5,7 +5,7 @@ import { colorize } from 'consola/utils';
|
|
|
5
5
|
import { resolveLocaleFromRoute } from 'nuxtseo-shared/i18n-runtime';
|
|
6
6
|
import { collectSitemap } from 'sitemapd/parse';
|
|
7
7
|
import { withLeadingSlash, withBase, joinURL } from 'ufo';
|
|
8
|
-
import { l as logger, M as MARKDOWN_LINK_AVAILABILITY_FILE } from '../shared/nuxt-ai-ready.
|
|
8
|
+
import { l as logger, M as MARKDOWN_LINK_AVAILABILITY_FILE } from '../shared/nuxt-ai-ready.jeGqwuW1.mjs';
|
|
9
9
|
import { normalizePagePath, toMarkdownPath } from '../../dist/runtime/markdown-path.js';
|
|
10
10
|
import { toLogicalRoute, toDeployedRoute } from '../../dist/runtime/route-path.js';
|
|
11
11
|
import { initSchema, computeContentHash, insertPage, queryAllPages, exportDbDump } from '../../dist/runtime/server/db/shared.js';
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import 'defu';
|
|
|
7
7
|
import 'nuxt-site-config/kit';
|
|
8
8
|
import 'nuxtseo-shared/kit';
|
|
9
9
|
import 'pkg-types';
|
|
10
|
-
export { m as default } from './shared/nuxt-ai-ready.
|
|
10
|
+
export { m as default } from './shared/nuxt-ai-ready.jeGqwuW1.mjs';
|
|
11
11
|
import '../dist/runtime/server/utils/discovery-response.js';
|
|
12
12
|
import 'node:url';
|
|
13
13
|
import 'pathe';
|
|
@@ -16,7 +16,8 @@ export function negotiateRepresentation(event) {
|
|
|
16
16
|
return negotiateContent(accept, secFetchDest);
|
|
17
17
|
}
|
|
18
18
|
export function getMarkdownRenderInfo(event, mode = { _tag: "runtime", contentNegotiation: true }) {
|
|
19
|
-
const
|
|
19
|
+
const queryIndex = event.path.indexOf("?");
|
|
20
|
+
const originalPath = queryIndex === -1 ? event.path : event.path.slice(0, queryIndex);
|
|
20
21
|
const isPrerender = mode._tag === "prerender";
|
|
21
22
|
if (originalPath.startsWith("/api") || originalPath.startsWith("/_") || originalPath.startsWith("/@"))
|
|
22
23
|
return null;
|
|
@@ -1081,7 +1081,7 @@ ${details}`);
|
|
|
1081
1081
|
const webmcpConfig = webmcpResult._tag === "Enabled" ? webmcpResult.config : null;
|
|
1082
1082
|
const indexNow = config.indexNow === true ? createHash("sha256").update(useSiteConfig().url || "nuxt-ai-ready").digest("hex").slice(0, 32) : config.indexNow || process.env.NUXT_AI_READY_INDEX_NOW_KEY;
|
|
1083
1083
|
const isStatic = nuxt.options.nitro.static || nuxt.options._generate || false;
|
|
1084
|
-
const hasPrerenderedRoutes = !!nuxt.options.nitro.prerender?.routes?.length;
|
|
1084
|
+
const hasPrerenderedRoutes = !!(nuxt.options.nitro.prerender?.routes?.length || nuxt.options.nitro.prerender?.crawlLinks);
|
|
1085
1085
|
const prerenderEnabled = !!(isStatic || hasPrerenderedRoutes);
|
|
1086
1086
|
const isSPA = nuxt.options.ssr === false;
|
|
1087
1087
|
let apiCatalogRegistered = false;
|