Skip to content

Commit

Permalink
style: fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaundal committed Nov 19, 2023
1 parent b74e265 commit 9adf4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/build-sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export function buildSitemap(builder: Builder, options: Options, dest: string) {
const pages = buildPageEntries(builder.prerendered.pages.keys(), options);
const sitemap = renderSitemap(pages);

mkdirSync(dest, { recursive: true });
mkdirSync(dest, {recursive: true});
const target = join(dest, options.sitemapFile);
writeFileSync(target, sitemap);

Expand Down

0 comments on commit 9adf4cc

Please sign in to comment.