1import { ExpoRequest, ExpoResponse } from 'expo-router/server';
2
3export async function POST(req: ExpoRequest): Promise<ExpoResponse> {
4  // Can serialize JSON -- this was a problem during development due to some earlier middleware (/logs) that were corrupting the request.
5  const json = await req.json();
6  return ExpoResponse.json(json);
7}
8