diff --git a/.env.sample b/.env.sample index 65f5a81..b7161ae 100644 --- a/.env.sample +++ b/.env.sample @@ -29,6 +29,7 @@ PDF_MAX_BUFFER= SCREENSHOT_MAX_BUFFER= READABILITY_MAX_BUFFER= PREVIEW_MAX_BUFFER= +IMPORT_LIMIT= # AWS S3 Settings SPACES_KEY= diff --git a/pages/api/v1/migration/index.ts b/pages/api/v1/migration/index.ts index 0bf3d76..8cdf5db 100644 --- a/pages/api/v1/migration/index.ts +++ b/pages/api/v1/migration/index.ts @@ -9,7 +9,9 @@ import importFromWallabag from "@/lib/api/controllers/migration/importFromWallab export const config = { api: { bodyParser: { - sizeLimit: "10mb", + sizeLimit: process.env.IMPORT_LIMIT + ? process.env.IMPORT_LIMIT + "mb" + : "10mb", }, }, };