@blinkk/root 1.3.26 → 1.3.27
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/cli.d.ts +1 -1
- package/dist/core.d.ts +2 -2
- package/dist/middleware.d.ts +2 -2
- package/dist/node.d.ts +1 -1
- package/dist/render.d.ts +1 -1
- package/dist/render.js +13 -0
- package/dist/render.js.map +1 -1
- package/dist/{types-YM5ppLFI.d.ts → types-lq4RNa8J.d.ts} +8 -0
- package/package.json +1 -1
|
@@ -364,6 +364,14 @@ declare class Renderer {
|
|
|
364
364
|
html?: string;
|
|
365
365
|
notFound?: boolean;
|
|
366
366
|
}>;
|
|
367
|
+
/**
|
|
368
|
+
* Constructs and returns the project's sitemap.
|
|
369
|
+
*
|
|
370
|
+
* The sitemap is used to:
|
|
371
|
+
* - determine all paths to build in SSG mode
|
|
372
|
+
* - display links on the dev server's 404 page
|
|
373
|
+
* - construct alternates for localized URL paths
|
|
374
|
+
*/
|
|
367
375
|
getSitemap(): Promise<Sitemap>;
|
|
368
376
|
private renderHtml;
|
|
369
377
|
render404(options?: {
|