From 8247f9b4eab3bd42fc0f06c164acb5dfcc3e4469 Mon Sep 17 00:00:00 2001 From: zaidmukaddam Date: Mon, 6 Jan 2025 19:50:22 +0530 Subject: [PATCH] Import server environment variables in clean_images API route --- app/api/clean_images/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/clean_images/route.ts b/app/api/clean_images/route.ts index 37c7643..b8516b1 100644 --- a/app/api/clean_images/route.ts +++ b/app/api/clean_images/route.ts @@ -1,3 +1,4 @@ +import { serverEnv } from '@/env/server'; import { del, list, ListBlobResult } from '@vercel/blob'; import { NextRequest, NextResponse } from 'next/server';