7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { NextRequest } from "next/server"
|
|
import { handleImageProxyRequest } from "@/lib/api-proxy"
|
|
|
|
export async function POST(req: NextRequest) {
|
|
return handleImageProxyRequest(req, "/admin/heroes")
|
|
}
|