什么是 webpack 意味着 XX 隐藏模块

我一直在使用 webpack,在构建过程中我看到了它的输出: 这是什么意思? 它检测全局常数,我使用不需要他们吗?

22759 次浏览

Webpack hides modules coming from folders like ["node_modules", "bower_components", "jam", "components"] in your console output by default. This helps you to focus on your modules instead on your dependencies.

You can display them by using the --display-modules argument.