From 7a4b7464df96d2e37bbdbc788e56e061e153b054 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sat, 14 Mar 2026 00:29:38 -0700 Subject: [PATCH] Refactor: Remove webpack hacks for captcha --- next.config.mjs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 7b72e0f..5a13038 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,13 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: 'standalone', - webpack: (config, { isServer }) => { - // Force Webpack to leave svg-captcha completely alone on the server - if (isServer) { - config.externals.push('svg-captcha'); - } - return config; - }, + output: 'standalone' }; export default nextConfig;