Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
30 views

I'm working on a Next.js 15 App Router project with a POST API route located at app/api/users/webhook/route.ts. In production (on Vercel), the build and API route work perfectly. But locally, when I ...
mitesh gehlot's user avatar
1 vote
1 answer
193 views

I'm using Next.js and running into an issue where none of my images are loading. I'm using the component from next/image, and every image gives this error in the console: Failed to load resource: ...
Luigi's user avatar
  • 13
0 votes
1 answer
87 views

I'm trying to build a website that has a blog, but whenever I try to deploy on Vercel, it gives me the error "Types of property 'params' are incompatible." What can i do with this error type ...
Shuvo Roy's user avatar
0 votes
0 answers
55 views

I'm using Vercel for frontend hosting, and I need to trigger two separate preview deployments per pull request, each pointing to a different backend environment. We run end-to-end (E2E) tests (with ...
Leticia Esperon's user avatar
1 vote
2 answers
156 views

I'm trying to deploy a blog written with Next.js v15.3.3 with Vercel but I keep getting the same error: Error occurred prerendering page "/post/1". Read more: https://nextjs.org/docs/...
ARMWilkinson's user avatar
-1 votes
1 answer
90 views

I'm trying to set up a serverless Express.js chatbot receiveing POST requests from Twilio and responding via a webhook Problem: When running npm run dev or vercel dev, POST requests my webhook on ...
Lorenz Krinner's user avatar
0 votes
0 answers
37 views

I am trying to create a platform using next.js and i'm at the point of allowing users to add custom domains using vercel's SDK but I'm not sure how I am suppose to allow users to verfify their domain. ...
Marc Hypolite's user avatar
-2 votes
1 answer
76 views

I'm trying to consume my own Node.js/Express API from a frontend application, but I'm getting a CORS error that I couldn't solve. Context: Backend: Node.js + Express Deployment: Vercel (@vercel/node) ...
Raphael Elias's user avatar
0 votes
1 answer
219 views

In my Nextjs application, I am using pages router. I have created an API route as such /pages/api/v1/wallet/expenses/[id]/index.ts I have added my API logic in this When I am building my application ...
Akshat Mittal's user avatar
1 vote
1 answer
62 views

user redirected to login page after a trying to access a protected page. I am storing the protected page url in search params and after login redirect to that page. (my approach works on localhost ...
Mahadi Hasan's user avatar
0 votes
0 answers
33 views

I have cloned the Vercel NextJS app router playground repo at https://github.com/vercel/next-app-router-playground to my Windows machine. Then I run pnpm install pnpm dev The app homepage works fine, ...
Cristian Delgado's user avatar
0 votes
0 answers
110 views

I’m using yarn v4 workspaces and need to be able to add an NPM token to access a private package. Locally this works fine as I can either define a .env.yarn file or add it to my .env file and use the ...
Sam Judge's user avatar
0 votes
1 answer
154 views

When I launch my app on Vercel, I am facing this issue consistently for the last day with fail -- It looks like you're trying to use TypeScript but do not have the required package(s) installed. ...
Cultertraz's user avatar
0 votes
0 answers
51 views

I'm deploying a backend-only Next.js project to Vercel that uses: Next.js API routes (pages/api) Prisma ORM (connected to Supabase Postgres) TypeScript (v5+) .env file with DATABASE_URL Some logic ...
Joe Riley's user avatar
0 votes
0 answers
72 views

Running a Next.js application on Vercel. Vercel is not playing nicely with Stripe API. Since Stripe API is so popularly used with payments, not sure how I'm the only one encountering this issue? ...
Katsu's user avatar
  • 9,075
0 votes
0 answers
67 views

I'm building a website using Astro and deploying it to Vercel. One of my components, Footer.astro, is missing all of its styles only in production. It works fine locally. Also all other components ...
user30418389's user avatar
4 votes
3 answers
3k views

Prisma works locally and I can invoke my server actions without any problem. However, when I deploy, I get `Unhandled Rejection: Error [PrismaClientInitializationError]: Prisma Client could not ...
Billy's user avatar
  • 71
-1 votes
1 answer
172 views

Locally everything is fine, when deployed to Vercel, backend runtime errors are trapped by Vercel/Next.js and they are automatically obfuscated, which is nice, but I want to turn it off. unfortunately ...
Alexander Mills's user avatar
1 vote
3 answers
381 views

As the title says, I'm trying to build a Next.js 15 project on Vercel, and this error is occurring: Error: Command "npm install && npx prisma generate && npm run build" ...
Leonardo Geja's user avatar
0 votes
1 answer
72 views

When I run npm run build locally, I don't get any errors and the build completes successfully. However, when I try to deploy the project on Vercel, I get the following error: Error: NEXTAUTH_SECRET is ...
Hamza Tekin's user avatar
0 votes
0 answers
60 views

I am working on building a Vercel integration but I'm running into some problems: When connecting an account to the integration, there is a popup window from the callback. This should exchange the ...
Arnav Motwani's user avatar
0 votes
0 answers
134 views

I have a Next.js application deployed on Vercel and a WordPress blog running on an external server (nginx/Apache). I’d like all requests to /blog/* on my Next.js app to be proxied or redirected to the ...
David Okwii's user avatar
  • 7,908
0 votes
1 answer
1k views

I'm a relatively new dev and I am working through a tutorial on how to build a fullstack demo app on Vercel using nextjs with Prisma and Postgres (link: https://vercel.com/guides/nextjs-prisma-...
Mike McGee's user avatar
1 vote
2 answers
102 views

I'm using a Next.js App Router API route (app/api/notify/route.ts) to check the current time (in Brazil timezone) and trigger notifications when a scheduled time is reached. This works locally, but ...
Marcus-Flavio's user avatar
1 vote
1 answer
466 views

Here is my current media collection config: import type { CollectionConfig } from "payload"; export const Media: CollectionConfig = { slug: "media", ... access: { read: () ...
Dince-afk's user avatar
  • 232

1
2
3 4 5
69