Next js 14 routing issues in production cloudflare
import Cliz from “./mainClient”; var first_name = “https://image.tmdb.org/t/p/w200”; const weekApi = ‘https://api.themoviedb.org/3/trending/movie/week?language=en-US’; const weekOptions = { method: ‘GET’, headers: { accept: ‘application/json’, Authorization: ‘my Auth’, Cache: ‘no-store’ }, }; const url = ‘https://api.themoviedb.org/3/movie/top_rated?language=en-US&page=1+2’; const options = { method: ‘GET’, headers: { accept: ‘application/json’, Authorization: ‘my auth’, }, cache: ‘no-store’, }; const rated = async () […]