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

    Warning

    The legacy brief option is deprecated in Rsdoctor 2.x and retained for backward compatibility. Use output.mode: 'brief' instead. See brief configuration migration.

    • Type: BriefType
    • Optional: true
    • Default: undefined

    Detailed configuration options for Brief mode are as follows:

    • reportHtmlName: Configures the filename of the HTML report in Brief mode. The default value is rsdoctor-report.html.

    briefType

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