Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
117 views

I upgraded an app to NextJS v15 and my dynamic routes are broken after npm run build with output: "export". When I refresh the browser on a dynamic route like /projects/123, the root page ...
spatialaustin's user avatar
0 votes
1 answer
47 views

I built a Nextjs project named vocab builder at link https://vocab-builder.app and deployed it on Netlify. My tech stack is Nextjs, Authjs(v5), Resend. I set the login callback redirect to be my home ...
Hao Zonggang's user avatar
0 votes
0 answers
48 views

I have a Next.js frontend and NestJS backend. In the backend there is token generation with refresh token rotation logic, and I want to use the same tokens in the frontend with NextAuth setup. Here’s ...
Sudeep Lamichhane's user avatar
1 vote
2 answers
71 views

First, I'm new to NextJS. When I try to use the SVG picture I'm using as a favicon in other parts of the website, it doesn't work. Here's the tree of my directory: |- components/ | |- Navbar.tsx <-...
Farouk Dev's user avatar
0 votes
1 answer
48 views

I have the following page: 'use client'; import { use } from 'react'; import { useCourseNode } from '@/api/course/hooks'; import { Loader } from '@/components/loaders/loader'; import { ...
Korer's user avatar
  • 393
2 votes
0 answers
193 views

I'm using shadcn/ui components in a Next.js 14 project with the app directory structure. All overlay components (Tooltip, Select dropdown, etc.) are appearing at the top-left corner of the screen ...
giorgi beqauri's user avatar
0 votes
0 answers
92 views

Creating an optimized production build ... glob error [Error: EPERM: operation not permitted, scandir 'C:\Users\LENOVO\Application Data'] { errno: -4048, code: 'EPERM', syscall: 'scandir', ...
Shubham Agrawal's user avatar
0 votes
0 answers
36 views

I've been having this problem for long but haven't figured it out the problem. I confirmed all the images are there in the /public/static/images folder, but NextJS display broken image. I have two ...
Seto's user avatar
  • 1,722
0 votes
0 answers
75 views

I would need some help regarding creating a custom toolbar for PayloadCMS RTE. The current version is PayloadCMS 3.49.1, and linked with @payloadcms/richtext-lexical version of 0.28.0. My goal is to ...
stuckherenthere's user avatar
0 votes
0 answers
25 views

I am using fastAPI streaming-response to get the ChatOllama stream. It work well with curl. But fetching event source from nextjs, feels like rest API, even tho event stream is showing in the network ...
mrdoubleu's user avatar
0 votes
1 answer
45 views

I have MongoDBAdapter as the adapter in my next-auth config, and I want to add a role to my user, so for that for that i made a next-auth.d.ts file, but it still shows me the error of type not ...
Striker's user avatar
  • 11
0 votes
0 answers
43 views

enter image description here this big error shows in the webapp all the auth of notion is done and the deploying is working until i have change the response output generation of the gemini function. ...
B2B Casefiles's user avatar
1 vote
0 answers
121 views

I’m building a small full-stack project using Next.js (frontend) and Express.js (backend) with a MySQL database. The Express backend has this route: // server.js import express from "express&...
Shivam Parmar's user avatar
0 votes
1 answer
100 views

When I put rate limiting on my server, and when the rate exceeds, the preflight request fails. So, code execution stops, and the interceptor error is also not shown. Is there any way to handle it in ...
web devlopment king's user avatar
0 votes
0 answers
97 views

I’m building an app where my backend is a Laravel API (running on http://localhost:8000) and my frontend is a Next.js 15 app (running on http://localhost:3000). I want to store the Sanctum token ...
Lana Hanna's user avatar
0 votes
0 answers
37 views

Question regarding ISRs in Next.JS apps. Basically if we got 2 Next.js apps. 1 app do ISR and output to a storage, and 2nd app refer to App 1 output. Is this possible - 2 apps sharing a single ISR ...
thebernardlim's user avatar
0 votes
0 answers
70 views

I'm building a hero section (Hero.tsx) in Next.js with a repeating SVG pattern background (pattern-tile.svg) in the form of a 'Ξ'. The layout (hero.layout.module.css) includes large text "MY ...
BestFish_888's user avatar
0 votes
1 answer
51 views

I need to focus overlay/dialog when using screen reader. so I added aria-hidden="true" on main area when open dialog , and added role="dialog" aria-modal="true" But on ...
Shiba Y.'s user avatar
0 votes
0 answers
399 views

I am trying to get my database connection to run querys but it refuses and runs the error I provided in the title. I didn't change anything and even reverted back a few commits to see what happened ...
aidanbh16's user avatar
0 votes
0 answers
31 views

I’m building a Next.js route that fetches leaderboard data and then queries the Cloud Save API for each player’s public Email item. The issue. TypeError: fetch failed [cause]: [Error [...
Eren's user avatar
  • 1
0 votes
0 answers
66 views

Im using tiptap lib. It have table element and I already added border 1px to the th of the border. .tiptap table td, .tiptap table th { border: 1px solid #000; padding: 0.5em; box-sizing: border-...
kanjiake's user avatar
0 votes
0 answers
186 views

want to ask question about opennext. I have deployed my blog without any issue. And when i readed documentation i found that worker have assets binding, and when you deploy, its populates with static ...
Yuri Tsiomra's user avatar
0 votes
2 answers
125 views

I have a Next.js project with TypeScript. It's a page router instead of an app router No babel config file(.babelrc etc) in the project The error occurs when I run npm test. jost seems to be one of ...
User A's user avatar
  • 29
0 votes
1 answer
133 views

I'm using Clerk Sign In and Sign Up components in my Next.js app. When a user signs up for the first time, everything works fine. However, if the user tries to sign up again (for example, using a ...
Diego Perdomo's user avatar
0 votes
1 answer
118 views

I’m serving MP4 video files from a Strapi backend, and they play fine in Chrome but fail in Safari. In Chrome: The video loads and plays without issues. In Safari: I see this error in the console: ...
FD3's user avatar
  • 1,996
0 votes
1 answer
86 views

I’m migrating my forms in a Next.js 15 project from native form handling to Formik, and I want to reuse my custom form components (InputField, Dropdown, TextArea, etc.). Here is my current InputField ...
Shivam Parmar's user avatar
-2 votes
1 answer
119 views

I'm making a small flight tracker system and I'm encountering an issue. Here's the code for a "choose your flight" page: "use client" interface MyPageProps { searchParams: ...
zack_falcon's user avatar
  • 4,384
0 votes
0 answers
45 views

I have a Next.js v15.5 app directory frontend project with TypeScript and NextAuth v5 Beta. I have enabled the credentials provider from NextAuth, and everything works just fine locally, but in ...
Stoman's user avatar
  • 173
1 vote
2 answers
71 views

When updating Next.js for applications in my monorepo (turborepo) from version 15.3.3 to 15.5.2 I get the following error: Error: ObjectMiddleware.register: serializer for mini-css-extract-plugin/...
bensijons's user avatar
  • 106
0 votes
0 answers
56 views

My turborepo has several packages, one of which is a ui library that uses some context providers. I export these context providers (Theme, Toast, etc.) so that I can use my UI components in my apps ...
Bigboss01's user avatar
  • 628
0 votes
0 answers
83 views

I used next-auth@beta in my Next project. I also used credential provider to perform authentication against my database where it stores all the users in a MySQL table. Some basic information such as ...
sc1013's user avatar
  • 1,146
0 votes
0 answers
25 views

I have just setup the next js project with typescript and tailwind. i wanted to apply the theme and got to know that, now on words tailwind v4, we will not have tailwind.config.ts file. **but ...
Brijal Kansara's user avatar
0 votes
0 answers
29 views

I'm trying to create a vertical scroll animation with gsap but i seem to be having problems with the code. It is scrolling horizontally like i want it to but it only takes a second, which is too fast. ...
user31451233's user avatar
3 votes
2 answers
408 views

I'm currently trying to validate a JSON object coming from a database into my web app, and I keep getting the error message: TypeError: Cannot read properties of undefined (reading 'traits'). There ...
Blockt's user avatar
  • 45
1 vote
0 answers
65 views

I have created a single type in my strapi named "LibraryConfig". When I am trying to update the data in this single type using api, so the response is successfull but when I see the strapi ...
Shashwat Srivastava's user avatar
0 votes
0 answers
96 views

I'm experiencing a critical issue with my NextJS/Firebase application where approximately 40% of random user registrations result in "orphaned" users - users that exist in Firebase ...
mehmet's user avatar
  • 45
1 vote
1 answer
149 views

Basics: NextJS 14.2.16 Pages Router VSCode IDE (latest version) Flask is the backend, NextJS is only used to serve a React front-end. Goal: Debug web app with Chrome using a user profile that has ...
MKF's user avatar
  • 696
1 vote
0 answers
181 views

Tailwind CSS IntelliSense doesn't work in a new Next.js project unless I add tailwind.config.ts I created a new Next.js project, and Tailwind CSS (v4) was installed by default. However, in my editor (...
Paweł Czajczyk's user avatar
1 vote
0 answers
63 views

i have an image for logo that is 1203 x 885, the more i reduce the width and height the more the logo loses sharpness, quality doesn't seem to do anything, the image looks vertically squeezed, the ...
Morgana Freeman's user avatar
0 votes
0 answers
37 views

My backend has an endpoint: /auth/jwt/create that returns a JSON response containing the access and refresh tokens. With my current backend setup, I send the tokens in both the response body and in ...
sodiumfish's user avatar
0 votes
0 answers
58 views

I'm experiencing frustrating Jest coverage inconsistencies in my React project. When I run tests for individual files in isolation, I get perfect 100% coverage as expected. However, when I run the ...
Ndx's user avatar
  • 647
0 votes
0 answers
30 views

I am trying to create an app using the T3 stack. I am following the instructions in the T3 documentation which start by telling us to use the command npm create t3-app@latest. After doing that, we get ...
questionsAsker's user avatar
0 votes
0 answers
64 views

I am new to setting up a monorepo solution as I've only worked with a regular next app in the past. For my current project, I have 2 deliverables and I am trying to share resources and components ...
Matthew's user avatar
  • 4,066
0 votes
1 answer
167 views

I’m running Playwright E2E tests against a Next.js 15 project. When something goes wrong in dev, Next injects an error overlay (via the element) (see image as an example). That overlay is useful in ...
Kode_12's user avatar
  • 4,976
1 vote
0 answers
40 views

I have a Next.js application that is dependent on a npm package that uses an authentication token. I don't want to commit this token to source control. I created a .env file in the root of my ...
dev_in_training's user avatar
0 votes
0 answers
80 views

I'm using Next.js with a Catalyst Sidebar component, like so: my-project/src/app/ (dashboard) (organization)/organizations/[organizationId]/ layout.tsx Sidebar.tsx layout.tsx // ...
Ben's user avatar
  • 21.9k
0 votes
2 answers
76 views

I made a search panel component, searchPanel.tsx. On it, a button grabs the details from the form (Flight From, Flight To, Flight Date, and some other data), then sends that to a new page. Here's the ...
zack_falcon's user avatar
  • 4,384
0 votes
1 answer
87 views

I've a nexjs app using supabse for auth In that app all the api routes are protected as they should be Now I want a frontend component of my app to send a request to an endpoint by the api route But ...
Preet Patel's user avatar
1 vote
1 answer
279 views

I have a FastAPI + Next.js project deployed on Vercel. Locally everything works, but on Vercel some routes break depending on whether I use a trailing slash in the route definition. For example, in my ...
AmericaDoodles's user avatar
0 votes
0 answers
65 views

I've set up SignalR with Next.js 15 to stream real-time data. Everything works fine, but when I refresh the page (Ctrl + R), I notice two SignalR connections being opened. I already have ...
nop's user avatar
  • 6,617