booleanfalseWhether to capture timing information for each module, the same as the profile config of Rspack.
When enabled:
dist/stats.json file through bundle analyzer.export default {
performance: {
profile: true,
},
};When enabled, Rspack generates a JSON file with statistics about modules, including timing information for each module.
Please refer to the Build profiling page for more methods to analyze build performance.