Skip to main content

Questions tagged [next.js13]

Next.js 13 is a version of the Next.js JavaScript web development framework released on October 26, 2022 and includes support for layouts, React Server Components, streaming, data fetching, and Turbopack, a new Rust-based successor to Webpack. Use this tag only for questions specific to Next.js 13 and its features. For generic Next.js programming questions, the [next.js] tag should be used.

0 votes
0 answers
9 views

Tradingview advanced not showing

Working on integrating tradingview advanced on nextjs 14, but the chart is unable to show I've setup my trading widget by using the default parameters and trying other parameters but still unable to ...
miracle godwin's user avatar
0 votes
0 answers
12 views

How to create a different URL for each dashboard page - NextJS 14

NextJS newbie here, so I apologize in advance if this has been asked before. I'm feeling really overwhelmed with all the information I'm finding and I'm not sure how to proceed. I have a NextJS ...
user2030942's user avatar
0 votes
2 answers
46 views

How can action on clientside dispatch action on serverside?

I have a theme switch toggle on the top AppBar which is a client component. The main layout is SSR and uses the nextjs App router. It has theme settings <ThemeProvider theme={lightOrDarkTheme}>....
Kal's user avatar
  • 1,775
0 votes
0 answers
15 views

Is this is right way to implement Thirdweb authentication with saving user in our backend database if user not present

// UserLoginProvider.js export const UserLoginProvider = ({ children }) => { const [walletAddress, setWalletAddress] = useState(""); const [loggedIn, setLoggedIn] = useState(false); ...
aditya rawat's user avatar
0 votes
0 answers
15 views

NextJS App router reusable custom hook for data fetching

I'm currently trying to migrate a project from NextJS pages router to the app router. In my old project, I had the following structure: /src /components /hooks customHook.tsx /services ...
Mari's user avatar
  • 41
0 votes
0 answers
9 views

Syntax Error in Next.js v13.5.4 Deployment on IIS Server (Windows)

I am experiencing difficulties deploying my Next.js v13 application on a Windows Server running IIS. After deployment, I encounter a syntax error that prevents the application from running properly. ...
Hammad Azam's user avatar
0 votes
0 answers
22 views

Why won't my next.js credentials login with email and password work while my google provider authentication does?

I am trying to make a login page with Next Auth V4, and I have followed some instructions online that seems to work well for the google provider which works, but my "credentials" email and ...
The Elina's user avatar
0 votes
0 answers
13 views

Image Working on Localhost but Broken in Production in Next.js

I'm working on a Next.js project where images display correctly on localhost. After running npm run build and npm start, everything works fine locally. However, once deployed to production, the images ...
farhan ajmal's user avatar
-4 votes
0 answers
24 views

Next.js 14 Cache CANNOT BE DISABLED ... NO MATTER WHAT ... IS THIS A BUG?

next.js caching cannot be disabled ... I've used: export const dynamic = 'force-dynamic' ... no luck revalidate: 0 ... no luck cache: 'no-store' ... no luck all combined ... no luck and then this ...
Da Moose's user avatar
  • 103
0 votes
1 answer
46 views

PDFKit library working in Express.js but not in Next.js API route

I'm working on a project where I need to generate PDFs using the pdfkit library. I've managed to get it working in an Express.js server, but I'm facing issues when trying to do the same in a Next.js ...
Chowdhury Tafsir Ahmed Siddiki's user avatar
-1 votes
0 answers
13 views

How do I integrate RDStation Forms in my NextJS project?

I need to add a form to my page. The first time I navigate to the route with this component, it renders normally, but each time I reload the page, the form disappears. Additionally, when I manually ...
oyera's user avatar
  • 1
0 votes
0 answers
27 views

Next js build time too long

I bought a template built on Nextjs 13 and I found that the build time is too long The server take too much time to build components or pages even I am not doing any request or fetching from an api ...
Wael Abidi's user avatar
0 votes
0 answers
27 views

Uploaded Images can't delete in cloudinary for nextjs

I implemented the code for uploading and deleting images in cloudinary for nextjs, image uploads worked very well but image deletion is not working. i created api/upload/route.js from from the app and ...
devguy2222's user avatar
0 votes
0 answers
20 views

using cookies from next/headers marks all pages as dynamic

When I am using cookies from "next/headers" it marks all pages as dynamic, this is not what I want my structure is like this in layout.tsx I have a child server component in which I want to ...
spyrox's user avatar
  • 120
0 votes
1 answer
22 views

Error When Adding Middleware to Protect Dashboard Route in Next.js Project

I am using Turborepo to create a Paytm like wallet, I have two next-apps, user-app, merchant-app and webhook handler in express. user-app ├── app │ ├── dashboard │ │ ├── dashboard.tsx │ ├── ...
aditi singh's user avatar

15 30 50 per page
1
2 3 4 5
236