fix: bypass response limit for media proxy endpoint

This commit is contained in:
httpjamesm 2022-10-31 17:46:17 -04:00
parent 1983f6b1fb
commit 9bce8a2dd5

View File

@ -113,3 +113,9 @@ export default async function handler(
// send media
res.send(mediaBuffer)
}
export const config = {
api: {
responseLimit: false,
},
}