cpxx9
(Cpxx9)
September 5, 2025, 3:18am
1
I am getting this build but everything I check shows that I am under the limit. I have removed deps, images, etc. and nothing works.
project not building vs building
amyegan
(Amy Egan)
September 16, 2025, 7:34pm
3
This looks similar to a topic from last year. The issue in that case was related to prisma adapter. Does this seem like what’s happening with your app?
The problem in my case was related to prisma adapter
// import { Pool, neonConfig } from "@neondatabase/serverless"
// import { PrismaNeon } from "@prisma/adapter-neon"
import { PrismaClient } from "@prisma/client"
import axios, { AxiosError } from "axios"
import { NextResponse } from "next/server"
// import ws from "ws"
// https://neon.tech/docs/guides/prisma
// neonConfig.webSocketConstructor = ws
// const connectionString = `${process.env.POSTGRES_URL}`
const prismaClientSingleton = () => …