Vercel deployment error
How can I solve this vercel deployment error for my t3 project? I haven't used vercel before.
npm run
ing locally works well, but deploying on vercel gives me this strange error with no inormation11 Replies
Did you expand all those lines and look through the output? It should provide more info
Does it not deploy if the linter is angry at some things? All it shows are linter warnings
ah I see - "When ESLint is detected in your project, Next.js fails your production build (next build) when errors are present."
👌
Yeah . You'll get eslint and type errors at build time. Unless you tell next to ignore them
how do I turn off eslint errors?
im running into the same problem right now
Next configuration. I believe there's an option ignoreErrorsDuringBuild
next.config.js Options: typescript
Next.js reports TypeScript errors by default. Learn to opt-out of this behavior here.
*ignoreBuildErrors
next.config.js Options: eslint
Next.js reports ESLint errors and warnings during builds by default. Learn how to opt-out of this behavior here.
This too