Merge pull request #26 from nexxeln/nexxel/faster-builds

This commit is contained in:
Dhravya Shah 2024-04-19 00:33:09 -07:00 committed by GitHub
commit bd256a2556
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,6 +8,13 @@ if (process.env.NODE_ENV === "development") {
}
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
eslint: {
ignoreBuildErrors: true,
},
typescript: {
ignoreBuildErrors: true,
},
};
export default nextConfig;