Cpanel – Next Js 13.5.6 not creating build Folder
Not able to create build Folder in Next.js 13.5 through npm run build. And want to upload this next js project in GoDaddy cpanel. It's dynamic project.
Not able to create build Folder in Next.js 13.5 through npm run build. And want to upload this next js project in GoDaddy cpanel. It's dynamic project.
'use client' async function Teachers (){ const response = await fetch('http://localhost:8000/teachers', }) const data = await response.json(); const [showNames , setShowNames] = useState(false); const teacherHandler = ()=>{ setShowNames (!showNames) } return ( <div className="mt-10"> <div className=" text-center font-DanaDemiBold text-3xl text-white">…
I'm having a issue building and deploying a NextJS14 app to Azure App Service in my Turbo Mono Repo and I seek help understanding the correct way to do that. I tried numerous things and everytime I'm missing a dependencie…
I am new in React and Next 13, I have a dropdown with some values mapped from the API and a table where data is also fetched from a different api. I want the selected project value of the dropdown…
I have a flask app hosted via AWS ECS which has an amazon generated url so I can't request an SSL certificate for it. I have a next js frontend hosted on vercel that cannot handle insecure requests. What are…
In my nextjs app, I want to add a button which user clicks on it and a pdf file downloads. I added the pdf file to public/documents/ and imported it and added it to link href. But after clicking it,…
I have a requirement from a customer SEO to redirect all pages from 308 to 301. Project is developed in NextJS 13 with page folder. I've handled most of the cases (old pages to new pages after migration) in middleware.ts…
I am trying to create a pagination function on my Next JS blog, I have been able to limit the Query output but get errors when I try implementing the load more button. My stack is GraphQL, WordPress and Next…
inside src/utils.ts import { type ClassValue, clsx } from "clsx"; import { twMerge } from "tailwind-merge"; import { SignJWT, jwtVerify } from "jose"; import { NextRequest, NextResponse } from "next/server"; import { cookies } from "next/headers";` ./src/utils.ts Error: × You're…
We Built our blog on Next JS, using WordPress as our API, we added content till we got to over 500 and our blog kept crashing because we had to call all our blog posts at the same time from…