From cb4920c22364e047d95927a092509da74c992d73 Mon Sep 17 00:00:00 2001
From: nate2402 <nate2402@ajou.ac.kr>
Date: Tue, 8 Apr 2025 14:25:27 +0900
Subject: [PATCH] fix: disable eslint when build

---
 next.config.ts | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/next.config.ts b/next.config.ts
index e55da27..ad6816a 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -2,6 +2,9 @@ import type { NextConfig } from "next";
 
 const nextConfig: NextConfig = {
   reactStrictMode: true,
+  eslint: {
+    ignoreDuringBuilds: true,
+  },
   compiler: {
     styledComponents: true,
   }
-- 
GitLab