From f07610ad8e217182d52c3a54a8fd47f11bcb1d2e Mon Sep 17 00:00:00 2001 From: giancarlo Date: Mon, 13 May 2024 22:49:11 +0700 Subject: [PATCH] Remove 'taint' from experimental features in next.config This commit removes the 'taint' feature from the experimental features list in the Next.js configuration file. This change has been made after reviewing that this feature was not required or being used in the current project. --- apps/web/next.config.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index 4d2f347fe..4e376998a 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -32,7 +32,6 @@ const config = { }, experimental: { mdxRs: true, - taint: true, instrumentationHook: true, turbo: { resolveExtensions: ['.ts', '.tsx', '.js', '.jsx'],