Files
App/api/queries/query.config.ts
Violet Caulfield 29e6c64bcf Artist page
Header text changes
2025-01-09 14:00:00 -06:00

27 lines
560 B
TypeScript

import { ImageFormat } from "@jellyfin/sdk/lib/generated-client/models";
export const queryConfig = {
limits: {
recents: 50
},
images: {
fillHeight: 300,
fillWidth: 300,
format: ImageFormat.Jpg
},
banners: {
fillHeight: 300,
fillWidth: 1000,
format: ImageFormat.Jpg,
},
logos: {
fillHeight: 50,
fillWidth: 300,
format: ImageFormat.Png
},
playerArtwork: {
fillHeight: 750,
fillWidth: 750,
format: ImageFormat.Jpg
}
}