We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
xslURL
SitemapOptions
1 parent a338041 commit 07754f5Copy full SHA for 07754f5
2 files changed
.changeset/funny-onions-grin.md
@@ -0,0 +1,5 @@
1
+---
2
+'@astrojs/sitemap': patch
3
4
+
5
+Adds missing `xslURL` property to `SitemapOptions` type.
packages/integrations/sitemap/src/index.ts
@@ -35,6 +35,8 @@ export type SitemapOptions =
35
36
// called for each sitemap item just before to save them on disk, sync or async
37
serialize?(item: SitemapItem): SitemapItem | Promise<SitemapItem | undefined> | undefined;
38
39
+ xslURL?: string;
40
}
41
| undefined;
42
0 commit comments