1import { ExpoResponse } from 'expo-router/server'; 2import fs from 'node:fs'; 3import path from 'path'; 4 5export function GET(): ExpoResponse { 6 console.log(fs); 7 // const txt = fs.readFileSync(path.join(__dirname, '../../../file.txt'), 'utf8'); 8 return new ExpoResponse(path.join('a', 'b', 'c'), { status: 200 }); 9} 10