Skip to content

Commit

Permalink
Merge pull request #26 from nexxeln/nexxel/faster-builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhravya committed Apr 19, 2024
2 parents b23fadc + 17cee20 commit bd256a2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion apps/web/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit bd256a2

Please sign in to comment.