fix: Exclude .next from TS & fixup ImageResponse types (#18972)

This commit is contained in:
Alex van Andel
2025-01-29 02:33:59 +00:00
committed by GitHub
parent 2a5e93b015
commit f8fa8ff294
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { ImageResponse } from "@vercel/og";
import type { NextApiRequest } from "next";
import { ImageResponse } from "next/server";
import type { SatoriOptions } from "satori";
import { z } from "zod";
+1 -1
View File
@@ -34,5 +34,5 @@
"../../packages/features/bookings/lib/getUserBooking.ts",
"../../packages/features/Segment.tsx"
],
"exclude": ["node_modules"]
"exclude": ["node_modules", ".next"]
}