jetsung npm run build 构建时移除 console 相关信息 安装 babel-plugin-transform-remove-console 插件: npm install --save-dev babel-plugin-transform-remove-console 在 Babel 的配置文件(如 .babelrc 或 babel.config.js)中添加插件配置,同时指定retainFunctionNames 选项为 true,以保留源代码中的函数名: { "plugins": [ ["transform-remove-console", { "retainFunctionNames": true }] ] }