export const GET = async ({ url }) => { return Response.json( await ( await fetch( `https://api.mangadex.org/manga/${url.searchParams.get( 'id' )}/feed?order[chapter]=desc&translatedLanguage[]=en&limit=1&contentRating[]=safe&contentRating[]=suggestive&contentRating[]=erotica&contentRating[]=pornographic` ) ).json() ); };