diff options
| author | Dhravya Shah <[email protected]> | 2024-04-19 00:33:09 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-19 00:33:09 -0700 |
| commit | bd256a255677d13603a33eb4e1b97f15d72b7e53 (patch) | |
| tree | 8bdef478740a7aa48bea3d1110391f48e42e091c | |
| parent | Merge pull request #24 from Pelps12/main (diff) | |
| parent | ignore eslint and ts build errors (diff) | |
| download | supermemory-bd256a255677d13603a33eb4e1b97f15d72b7e53.tar.xz supermemory-bd256a255677d13603a33eb4e1b97f15d72b7e53.zip | |
Merge pull request #26 from nexxeln/nexxel/faster-builds
| -rw-r--r-- | apps/web/next.config.mjs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index b0c1476c..31faf8ff 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -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; |