UNPKG

next-runtime-sitemap

Version:

Generates a sitemap for nextjs apps at runtime, using a crawl of the local filesystem

30 lines (29 loc) 1.67 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.introspectFiles = introspectFiles; const node_path_1 = __importDefault(require("node:path")); const introspect_app_1 = require("./introspect-app"); const util_1 = require("next-dynamic-sitemap/dist/util"); const introspect_pages_1 = require("./introspect-pages"); function introspectFiles(props) { return __awaiter(this, void 0, void 0, function* () { const serverDir = node_path_1.default.join(process.cwd(), ".next", "server"); const [appFiles, pagesFiles] = yield Promise.all([ (0, introspect_app_1.introspectApp)(serverDir).catch(() => []), (0, introspect_pages_1.introspectPages)(serverDir, props).catch(() => []), ]); return (0, util_1.generateXMLSitemap)([...appFiles, ...pagesFiles]); }); }