gpt4 book ai didi

webpack - "The code generator has deoptimised the styling of [some file] as it exceeds the max of "100KB""是什么意思?

转载 作者:行者123 更新时间:2023-12-03 04:20:37 24 4
gpt4 key购买 nike

我向我的项目添加了一个新的 npm 包,并在我的一个模块中需要它。

现在我从 webpack 收到此消息,

构建模块注意:代码生成器已取消优化“D:/path/to/project/node_modules/ramda/dist/ramda.js”的样式,因为它超过了最大值“100KB”。

这是什么意思?我需要采取一些行动吗?

最佳答案

这与 Babel 编译器的 compact 选项有关,该选项命令“不包含多余的空白字符和行终止符。当设置为“auto”时,compact 在输入大小上设置为 true >100KB。” 默认情况下,其值为“auto”,因此这可能是您收到警告消息的原因。请参阅Babel documentation .

您可以使用 query parameter 从 Webpack 更改此选项。例如:

loaders: [
{ test: /\.js$/, loader: 'babel', query: {compact: false} }
]

关于webpack - "The code generator has deoptimised the styling of [some file] as it exceeds the max of "100KB""是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29576341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com