我已经使用 Sencha cmd 生成了一个项目。这将创建一个名为“overrides”的漂亮文件夹,我将重写的 Ext.Ajax 类放在其中。然后我像这样将它包含在我的 app.js 文件中
requires: [
'overrides.Ajax'
]
这在使用我的应用程序时工作得很好,但是当我尝试使用 Sencha cmd 构建它时,我收到以下错误:
[ERR] BUILD FAILED
[ERR] com.sencha.exceptions.BasicException: The following error occurred while e
xecuting this line:
[ERR] Z:\public_html\LoginScreen\.sencha\app\build-impl.xml:469: com.sencha.exce
ptions.ExBuild: com.sencha.exceptions.ExBuild: Failed to find any files for Z:\p
ublic_html\LoginScreen\app\app.js::ClassRequire::overrides.Ajax
有谁知道如何正确包含覆盖文件夹内的文件?