hardcoded import size limit to 10mb to pass build error

This commit is contained in:
daniel31x13
2023-11-07 18:21:27 -05:00
parent dba62d7028
commit fbc1d4b113
3 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ import verifyUser from "@/lib/api/verifyUser";
export const config = {
api: {
bodyParser: {
sizeLimit: `${process.env.IMPORT_SIZE_LIMIT || "5"}mb`,
sizeLimit: "10mb",
},
},
};