From fbc6870c789ca169d84b3709d8df0791815f52c9 Mon Sep 17 00:00:00 2001 From: yyh Date: Tue, 14 Apr 2026 14:06:04 +0800 Subject: [PATCH] fix --- web/next.config.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/web/next.config.ts b/web/next.config.ts index c685cc7b2a..aa4d9318f4 100644 --- a/web/next.config.ts +++ b/web/next.config.ts @@ -14,19 +14,6 @@ const nextConfig: NextConfig = { bundler: 'turbopack', }), }, - webpack: (config, { dev: _dev, isServer: _isServer }) => { - config.plugins.push(codeInspectorPlugin({ bundler: 'webpack' })) - - config.experiments = { - asyncWebAssembly: true, - layers: true, - } - config.output.environment = { - asyncFunction: true, - } - - return config - }, productionBrowserSourceMaps: false, // enable browser source map generation during the production build // Configure pageExtensions to include md and mdx pageExtensions: ['ts', 'tsx', 'js', 'jsx', 'md', 'mdx'],