performance.profile

  • Type: boolean
  • Default: false

Whether capture timing information for each module, same as the profile config of webpack / Rspack.

Example

export default {
  performance: {
    profile: true,
  },
};

When turned on, webpack / Rspack generates a JSON file with some statistics about the module that includes information about timing information for each module.

ON THIS PAGE