webpack5 提供了模式选择,包括开发模式、生产模式、空模式,并对不同模式做了对应的内置优化。可通过配置模式让项目性能更优。

    1. module.exports = {
    2. mode: 'development',
    3. };