Newer
Older
taehui / taehui-fe / src / app / www / avatar / drawing / route.ts
@Taehui Taehui on 17 Mar 261 bytes 2024-03-17 오후 11:29
import logIP from "@/app/www/mws/logIP";
import { DEFAULT_AVATAR_ASSET } from "@/app/www/utilities/Path";

export const GET = logIP(async () => {
  return new Response(DEFAULT_AVATAR_ASSET, {
    headers: {
      ["content-type"]: "image/png",
    },
  });
});