Skip to content

Commit

Permalink
run: npm run format_check
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Aug 29, 2024
1 parent ded0034 commit 764bec7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/routes/(marketing)/sitemap.xml/+server.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import type { RequestHandler } from '@sveltejs/kit';
import * as sitemap from 'super-sitemap';
import { WebsiteBaseUrl } from '../../../config';
import type { RequestHandler } from "@sveltejs/kit"
import * as sitemap from "super-sitemap"
import { WebsiteBaseUrl } from "../../../config"

export const GET: RequestHandler = async () => {
return await sitemap.response({
origin: WebsiteBaseUrl,
excludeRoutePatterns: [
'.*\\(admin\\).*', // i.e. exclude routes within admin group
".*\\(admin\\).*", // i.e. exclude routes within admin group
],
});
};
})
}

0 comments on commit 764bec7

Please sign in to comment.