From 4dc2a21a8d869132dfddec87b9eb83ec1ff63694 Mon Sep 17 00:00:00 2001 From: Jonatan Andre Vevang Date: Mon, 12 Feb 2024 18:27:57 +0100 Subject: [PATCH] disabled eslint when building --- next.config.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/next.config.js b/next.config.js index 658404a..88d4dd2 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,9 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; - -module.exports = nextConfig; +const nextConfig = { + eslint: { + // Ignorer ESLint under byggesteg + ignoreDuringBuilds: true, + }, + }; + + module.exports = nextConfig; \ No newline at end of file