diff --git a/next.config.mjs b/next.config.mjs index 4e18a96..f6b843e 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', + // This prevents Webpack from bundling svg-captcha and breaking its font paths + serverExternalPackages: ['svg-captcha'], }; export default nextConfig;