gpt4 book ai didi

node.js - Ember 生产构建错误 'WARN: Output exceeds 32000 characters'

转载 作者:搜寻专家 更新时间:2023-11-01 00:12:32 25 4
gpt4 key购买 nike

我正在开发一个 Ember 应用程序,

在那个应用程序中-

为生产环境构建应用程序在构建过程中给出以下警告。

在执行 ember build --environment=production 命令时

我收到以下警告:

警告:输出超过 32000 个字符

我们需要抑制或消除此警告。

最佳答案

您需要在 options 对象中提及它以进行 minifyjs 配置,

var app = new EmberApp(defaults, {
minifyJS: {
enabled: true, //by default its enabled for production
options: {
"max-line-len": 50000, //you can mention custom value
}
}
});

关于node.js - Ember 生产构建错误 'WARN: Output exceeds 32000 characters',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42577686/

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