File size: 426 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
/**
* @deprecated ImageResponse moved from "next/server" to "next/og" since Next.js 14, please import from "next/og" instead.
* Migration with codemods: https://nextjs.org/docs/app/building-your-application/upgrading/codemods#next-og-import
*/
export function ImageResponse(): never {
throw new Error(
'ImageResponse moved from "next/server" to "next/og" since Next.js 14, please import from "next/og" instead'
)
}
|