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