From 5f56baf3511242a2f0a3bb1235708db79e2a4b5c Mon Sep 17 00:00:00 2001 From: Ezhil Shanmugham Date: Mon, 5 Aug 2024 02:00:51 +0530 Subject: [PATCH] ignore build errors --- app/page.tsx | 4 ++-- next.config.mjs | 15 ++++++++++++++- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 9d4b47c..450683e 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -95,7 +95,7 @@ export default function Home() { overcoming digital obstacles.

- Additionally, they're dedicated to crafting innovative projects + Additionally, they're dedicated to crafting innovative projects that enhance the security of systems and data, making sure everything is well-guarded in our digital landscape.

@@ -160,7 +160,7 @@ export default function Home() { trends and developments in the field of cybersecurity. This includes crafting engaging captions and using relevant hashtags to enhance visibility and engagement. The team ensures that our - chapter's activities and achievements are communicated effectively + chapter's activities and achievements are communicated effectively to the outside world, acting as the bridge between our internal efforts and our external audience.

diff --git a/next.config.mjs b/next.config.mjs index 4678774..9c896bd 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,17 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + eslint: { + // Warning: This allows production builds to successfully complete even if + // your project has ESLint errors. + ignoreDuringBuilds: true, + }, + typescript: { + // !! WARN !! + // Dangerously allow production builds to successfully complete even if + // your project has type errors. + // !! WARN !! + ignoreBuildErrors: true, + }, +}; export default nextConfig;