See next.config.js
The follow has been added to nextConfig in order to make the build pass, while ignoring the Type Errors caused by something that came with the Next.js Framework. This is seems to defeat the purpose of using Types, so I do want to remove this snippet, and refactor what's needed to fix the Type Errors on build.
typescript: {
// !! WARN !!
// Dangerously allow production builds to successfully complete even if
// your project has type errors.
// !! WARN !!
ignoreBuildErrors: true,
},
Much appreciation to anyone who can help here, as I am not yet fluent nor familiar enough with TypeScript.
See
next.config.jsThe follow has been added to nextConfig in order to make the build pass, while ignoring the Type Errors caused by something that came with the Next.js Framework. This is seems to defeat the purpose of using Types, so I do want to remove this snippet, and refactor what's needed to fix the Type Errors on build.
Much appreciation to anyone who can help here, as I am not yet fluent nor familiar enough with TypeScript.