我一直试图在ExtJS应用程序上从Sencha CMD向最终版本添加自定义CSS文件。该应用程序是使用CMD生成的。
我的CSS文件位于resources / Custom / myfile.css
中尝试采用我发现的许多不同的方法,但没有成功。
我的app.json看起来像
{
"builds": {
"production": {
"default": true,
"compressor": {
"type": "closure"
}
}
},
"name": "Test.App",
"css": [
{
"path": "resources/Custom/_body.css",
"remote": true
}
],
"requires": [
],
"id": "fb0cc613-c7e3-4e2e-9f9f-aa569fcf2465"
}
但是在尝试构建时我得到了错误:
BUILD FAILED
[ERR] com.sencha.exceptions.ExBuild: Combining x-compile in HTML page with Microloader in app.json is not supported
如果我删除app.json的CSS部分它确实有用!!!
我正在使用ExtJS 4.1.1
任何帮助?