Add portfolio thingies

This commit is contained in:
2025-12-25 09:24:27 +01:00
parent ee454261cb
commit ededf3df06
13 changed files with 332 additions and 103 deletions

View File

@ -21,7 +21,7 @@ export async function createImagesBulk(formData: FormData): Promise<BulkResult[]
continue;
}
const artwork = await createImageFromFile(f);
const artwork = await createImageFromFile(f, { colorMode: "defer" });
if (!artwork) {
results.push({ ok: false, name: f.name, error: "Upload failed" });
continue;