Files
App/api/queries/query.config.ts
2024-12-31 05:55:25 -06:00

22 lines
455 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
},
logos: {
fillHeight: 25,
fillWidth: 100,
format: ImageFormat.Png
},
playerArtwork: {
fillHeight: 500,
fillWidth: 500,
format: ImageFormat.Jpg
}
}