Merge remote-tracking branch 'origin/master'

This commit is contained in:
2026-01-09 19:20:24 +09:00
72 changed files with 4191 additions and 1534 deletions

View File

@@ -107,7 +107,9 @@ export async function getServerApiHeaders(token?: string): Promise<HeadersInit>
*/
export async function serverFetch(
url: string,
options?: RequestInit & { skipAuthCheck?: boolean }
options?: RequestInit & {
skipAuthCheck?: boolean;
}
): Promise<{ response: Response | null; error: ApiErrorResponse | null }> {
try {
const cookieStore = await cookies();