From 4b303aabfb9814a45020e8fe5da8917690f38b72 Mon Sep 17 00:00:00 2001 From: Shay Patel Date: Sat, 26 Oct 2024 15:31:24 +0100 Subject: [PATCH] Turn off no-img-element --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 3722418..1a1ad7a 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,3 +1,6 @@ { - "extends": ["next/core-web-vitals", "next/typescript"] + "extends": ["next/core-web-vitals", "next/typescript"], + "rules": { + "@next/next/no-img-element": "off" + } }