style: apply prettier formatting to all files
All checks were successful
Build and Push Backend Image / build (push) Successful in 46s
Build and Push Frontend Image / build (push) Successful in 5m12s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-04 22:27:54 +01:00
parent 18116072c9
commit efc7624ba3
184 changed files with 10327 additions and 10220 deletions

View File

@@ -2,22 +2,16 @@ import * as sitemap from "super-sitemap";
import { getArticles, getModels, getVideos } from "$lib/services";
export const GET = async () => {
return await sitemap.response({
origin: "https://sexy.pivoine.art",
excludeRoutePatterns: [
"^/signup/verify",
"^/password/reset",
"^/me",
"^/play",
"^/tags/.+",
],
paramValues: {
"/magazine/[slug]": (await getArticles(fetch)).map((a) => a.slug),
"/models/[slug]": (await getModels(fetch)).map((a) => a.slug),
"/videos/[slug]": (await getVideos(fetch)).map((a) => a.slug),
},
defaultChangefreq: "always",
defaultPriority: 0.7,
sort: "alpha", // default is false; 'alpha' sorts all paths alphabetically.
});
return await sitemap.response({
origin: "https://sexy.pivoine.art",
excludeRoutePatterns: ["^/signup/verify", "^/password/reset", "^/me", "^/play", "^/tags/.+"],
paramValues: {
"/magazine/[slug]": (await getArticles(fetch)).map((a) => a.slug),
"/models/[slug]": (await getModels(fetch)).map((a) => a.slug),
"/videos/[slug]": (await getVideos(fetch)).map((a) => a.slug),
},
defaultChangefreq: "always",
defaultPriority: 0.7,
sort: "alpha", // default is false; 'alpha' sorts all paths alphabetically.
});
};