雅虎提供的 YUI3 文件没有缩小?

发布于 2024-11-16 12:52:00 字数 319 浏览 1 评论 0原文

最近开始学习YUI3。我从链接

http://developer.yahoo.com/yui/3/yui 开始/#start

这表示我需要包含种子文件

并且其他文件可以根据我们需要自动加载。但是我注意到这些文件没有缩小。我做错了什么吗?

I recently started learning YUI3. I started with the link

http://developer.yahoo.com/yui/3/yui/#start

Which says I need to include the seed file

<script src="http://yui.yahooapis.com/3.3.0/build/yui/yui-min.js"></script>

And other files can be loaded automatically based on what we need. However I am noticing that these files are not minified. Am I doing something wrong ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

手心的温暖 2024-11-23 12:52:00

一种可能性是,您的 YUI() 语句可以接受配置对象,检查它不包含标志 filter: 'raw'

即如果它读取

YUI({
    filter: 'raw'
}).use(

,则删除过滤器属性

ref - http://developer.yahoo.com/yui/3/yui/#loader

One possibility is, your YUI() statement can accept a config object, check it doesn't contain the flag filter: 'raw'

ie if it reads

YUI({
    filter: 'raw'
}).use(

then remove the filter property

ref - http://developer.yahoo.com/yui/3/yui/#loader

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文