We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334b347 commit 62f0912Copy full SHA for 62f0912
src/app/api/proxy/route.ts
@@ -20,7 +20,6 @@ export async function GET(req: NextRequest) {
20
try {
21
const maxBytes = 10 * 1024 * 1024 // 10 MB
22
const file = await downloadFile({ url, maxBytes })
23
- console.log("Downloaded")
24
return new NextResponse(file, { status: 200 })
25
} catch (error) {
26
if (error instanceof Error == false) {
0 commit comments