Removed max image size
This commit is contained in:
parent
a613e57615
commit
7912d19129
|
@ -37,13 +37,6 @@ export const ContentsThumbnails = buildImageCollectionConfig({
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "max",
|
|
||||||
formatOptions: {
|
|
||||||
format: "webp",
|
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
|
|
|
@ -27,13 +27,6 @@ export const LibraryItemsGallery = buildImageCollectionConfig({
|
||||||
options: { effort: 6, quality: 60, alphaQuality: 60 },
|
options: { effort: 6, quality: 60, alphaQuality: 60 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "max",
|
|
||||||
formatOptions: {
|
|
||||||
format: "webp",
|
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
fields: [],
|
fields: [],
|
||||||
|
|
|
@ -40,13 +40,6 @@ export const LibraryItemsThumbnails = buildImageCollectionConfig({
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "max",
|
|
||||||
formatOptions: {
|
|
||||||
format: "webp",
|
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
|
|
|
@ -51,13 +51,6 @@ export const WeaponsThumbnails = buildImageCollectionConfig({
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: "max",
|
|
||||||
formatOptions: {
|
|
||||||
format: "webp",
|
|
||||||
options: { effort: 6, quality: 80, alphaQuality: 80 },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
|
|
|
@ -198,14 +198,6 @@ export interface LibraryItemThumbnail {
|
||||||
filesize?: number;
|
filesize?: number;
|
||||||
filename?: string;
|
filename?: string;
|
||||||
};
|
};
|
||||||
max?: {
|
|
||||||
url?: string;
|
|
||||||
width?: number;
|
|
||||||
height?: number;
|
|
||||||
mimeType?: string;
|
|
||||||
filesize?: number;
|
|
||||||
filename?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
export interface LibraryItemGallery {
|
export interface LibraryItemGallery {
|
||||||
|
@ -235,14 +227,6 @@ export interface LibraryItemGallery {
|
||||||
filesize?: number;
|
filesize?: number;
|
||||||
filename?: string;
|
filename?: string;
|
||||||
};
|
};
|
||||||
max?: {
|
|
||||||
url?: string;
|
|
||||||
width?: number;
|
|
||||||
height?: number;
|
|
||||||
mimeType?: string;
|
|
||||||
filesize?: number;
|
|
||||||
filename?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
export interface LibraryItemScans {
|
export interface LibraryItemScans {
|
||||||
|
@ -384,14 +368,6 @@ export interface ContentsThumbnail {
|
||||||
filesize?: number;
|
filesize?: number;
|
||||||
filename?: string;
|
filename?: string;
|
||||||
};
|
};
|
||||||
max?: {
|
|
||||||
url?: string;
|
|
||||||
width?: number;
|
|
||||||
height?: number;
|
|
||||||
mimeType?: string;
|
|
||||||
filesize?: number;
|
|
||||||
filename?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
export interface Recorder {
|
export interface Recorder {
|
||||||
|
@ -838,14 +814,6 @@ export interface WeaponsThumbnail {
|
||||||
filesize?: number;
|
filesize?: number;
|
||||||
filename?: string;
|
filename?: string;
|
||||||
};
|
};
|
||||||
max?: {
|
|
||||||
url?: string;
|
|
||||||
width?: number;
|
|
||||||
height?: number;
|
|
||||||
mimeType?: string;
|
|
||||||
filesize?: number;
|
|
||||||
filename?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
export interface WeaponsGroup {
|
export interface WeaponsGroup {
|
||||||
|
|
Loading…
Reference in New Issue