gpt4 book ai didi

jquery - 如何在 Webpack 中包含 jQuery CDN?

转载 作者:行者123 更新时间:2023-12-03 22:51:21 24 4
gpt4 key购买 nike

因为 jQuery 的 CDN 版本很可能会被缓存。有没有办法将 CDN 版本包含在 webpack 中,而不是本地 npm 版本。

如果 jQuery 未加载到页面上,将 jQuery 包含在 Webpack 中的最佳方法是什么?

最佳答案

这个好像之前讨论过,见https://github.com/webpack/webpack/issues/150 。回应是:

webpack is a module bundler not a javascript loader. It package files from local disk and don't load files from the web (except its own chunks).

Use a javascript loader, i. e. script.js

var $script = require("scriptjs");
$script("//ajax.googleapis.com/ajax/libs/angularjs/1.2.9/angular.min.js", function() {
// ...
});

关于jquery - 如何在 Webpack 中包含 jQuery CDN?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39781951/

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