For AI agents: the complete documentation index is available at /zh/llms.txt, the full documentation bundle is available at /zh/llms-full.txt, and this page is available as Markdown at /zh/config/options/brief.md.
close
  • 简体中文
  • brief

    Warning

    旧版 brief 配置已在 Rsdoctor 2.x 中废弃,仅为向后兼容而保留。请改用 output.mode: 'brief'。参阅 brief 配置迁移

    • 类型: BriefType
    • 可选: true
    • 默认值: undefined

    Brief 模式的详细配置选项如下:

    • reportHtmlName: 配置 Brief 模式下 HTML 报告的文件名称,默认值为 rsdoctor-report.html

    briefType

    interface BriefConfig {
      reportHtmlName?: string | undefined;
    }
    • 示例:
    new RsdoctorRspackPlugin({
      output: {
        mode: 'brief',
      },
    });