我有一个使用 underscore.js 模板并通过 require.js + 文本插件加载它们的应用程序:
define([..., 'text!templates/app/authentication.html'], function(..., Template) {
...
});
一切正常,但现在我将通过 Grunt.js 和 require.js 优化器将我的所有 js 文件连接到一个。这是 grunt 文件中的相应部分:
requirejs: {
compile: {
options: {
name : 'main',
baseUrl: "www/js",
optimize: "none",
out: "www/js/result.js",
stubModules : ['text'],
paths : {
text: 'vendor/text',
...
},
shim: {
...
}
}
}
}
但是 grunt 向我抛出了下一个错误:
Running "requirejs:compile" (requirejs) task
>> Tracing dependencies for: nexusapp
>> Error: ENOENT, no such file or directory
>> 'D:\templates\app\authentication.html'
>> In module tree:
>> main
>> app
>> app.authentication
>> text
Warning: RequireJS failed. Use --force to continue.
Aborted due to warnings.
优化器正在尝试读取忽略指定的文件baseUrl
。我该如何解决这个问题?
先感谢您!