gpt4 book ai didi

javascript - 使用 Requirejs 时,是否可以让优化器自动找到所有依赖项?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:36:51 25 4
gpt4 key购买 nike

我有很多模块。一个模块加载另一个模块,另一个模块加载另一个模块。等等……

当然,当我加载页面时,所有这些模块都会加载。它工作得很好。没有优化器。 (尽管需要一分钟,因为浏览器必须加载 50 个东西)。

当我在我的 app.build.js 中使用优化器...时,似乎我必须手动指定每个模块!??

为什么优化器不能自动遍历模块?

最佳答案

您只需指定要优化的模块,而不是其依赖项。来自文档:

In the modules array, specify the module names that you want to optimize, in the example, "main". "main" will be mapped to appdirectory/scripts/main.js in your project. The build system will then trace the dependencies for main.js and inject them into the appdirectory-build/scripts/main.js file.

({
appDir: "../",
baseUrl: "scripts",
dir: "../../appdirectory-build",
modules: [
{
name: "main"
}
]
})

关于javascript - 使用 Requirejs 时,是否可以让优化器自动找到所有依赖项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8777009/

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