add import limit for the environment variables

This commit is contained in:
daniel31x13
2024-07-05 11:36:16 -04:00
parent 7c95761990
commit 0185ec57c7
2 changed files with 4 additions and 1 deletions
+3 -1
View File
@@ -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",
},
},
};