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