From 5cab15422dd7b873801eb8b05f82c94a5d213787 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Wed, 11 Feb 2026 17:16:15 +0100 Subject: [PATCH] fix(documents) : exclude path from collection to prevent OOM, lazy-load on demand The path field contains base64 data URIs that can be several MB each. Loading 200 documents at once exceeded the 128MB PHP memory limit. Now the collection endpoint uses document:list group (without path) and the frontend fetches the full document on demand when the user clicks download or preview. Co-Authored-By: Claude Opus 4.6 --- app/pages/documents.vue | 28 ++++++++++++++++++++++------ 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/app/pages/documents.vue b/app/pages/documents.vue index 4d3b205..696da51 100644 --- a/app/pages/documents.vue +++ b/app/pages/documents.vue @@ -132,6 +132,7 @@