Files
App/api/queries/query.config.ts
Violet Caulfield cf4e8ef1e0 logo stuff
2024-12-31 15:36:29 -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: 50,
fillWidth: 300,
format: ImageFormat.Png
},
playerArtwork: {
fillHeight: 500,
fillWidth: 500,
format: ImageFormat.Jpg
}
}