gpt4 book ai didi

node.js - 使用 Sails.js 0.10 配置 Bower

转载 作者:太空宇宙 更新时间:2023-11-04 03:09:43 25 4
gpt4 key购买 nike

我安装了 grunt-bower 模块并跟进了以下链接:

https://stackoverflow.com/a/22456574/194345

但仍然无法访问放置在assets文件夹中的js或css文件。

我用 Bower 安装了 jquery,它位于“assets\lib\jquery\dist\jquery.js”中,但在浏览器中,尝试使用以下 URL 来访问它:

http://localhost:1337/js/jquery.js

http://localhost:1337/lib/js/jquery.js

http://localhost:1337/lib/jquery/dist/jquery.js

总是显示未找到。

正确的路径是什么?

最佳答案

我认为您可能没有完全实现您发布的链接中的解决方案,特别是有关配置 grunt-bower 任务的部分。我已经编辑了这个原本很好的答案,使其更加清晰——您需要将配置包装在一个函数中并将其保存为 tasks/config/bower.js:

module.exports = function(grunt) {
grunt.config.set('bower', {
dev: {
dest: '.tmp/public',
js_dest: '.tmp/public/js',
css_dest: '.tmp/public/styles'
}
});

grunt.loadNpmTasks('grunt-bower');

};

然后,下次您启动 Sails 时,jquery.js 将被复制到 .tmp/public/js,因此可在 http://localhost:1337/js/jquery.js 处使用。

关于node.js - 使用 Sails.js 0.10 配置 Bower,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26084310/

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