当前位置: 首页 > 工具软件 > build-scripts > 使用案例 >

npm run build --report不生成分析图

阳长恨
2023-12-01

官网用法

用法:vue-cli-service build [options] [entry|pattern]

选项:

  --mode        指定环境模式 (默认值:production)
  --dest        指定输出目录 (默认值:dist)
  --modern      面向现代浏览器带自动回退地构建应用
  --target      app | lib | wc | wc-async (默认值:app)
  --name        库或 Web Components 模式下的名字 (默认值:package.json 中的 "name" 字段或入口文件名)
  --no-clean    在构建项目之前不清除目标目录
  --report      生成 report.html 以帮助分析包内容
  --report-json 生成 report.json 以帮助分析包内容
  --watch       监听文件变化

然后很多情况,我们直接在命令行使用

npm run build --report

这个当然是无法生成的,因为上述官网用法,指的是在package.json下的script命令中添加参数
,参数本身就是–report 那么如果我们在命令行中直接调用的话,传递参数,实际上是,我们需要给package.json下的script传递参数,需要加 --

也就是正确的命令

npm run build  -- --report

or

修改package.json的script,在执行npm run build

scripts": {
   "serve": "vue-cli-service serve",
   "build": "vue-cli-service build --report",
   "lint": "vue-cli-service lint"
 },
 类似资料: