如何在app.json中为bootstrap.json文件添加my-custom.css文件 应用程序,JSON
{
"name": "My App",
"requires": [
],
"id": "166372b1-e416-4921-8ef2-2495765b9d76"
}
bootstrap.json
/**
* This file is generated by Sencha Cmd and should NOT be edited. It is a
* combination of content from app.json, and all required package's package.json
* files. Customizations should be placed in app.json.
*/
{"id":"166372b1-e416-4921-8ef2-2495765b9d76","js":[],"css":[]}
答案 0 :(得分:3)
我认为您要求将CSS文件添加到应用程序的app.json
文件中。基本上,您需要将以下部分添加到app.json
,然后运行sencha app build
(它将为您更新bootstrap.json)。
"css": [
{
"path": "resources/css/my-styles.css"
}
],
然而,使用Sencha Cmd初始化的项目本节将提供有用的评论。花几分钟时间熟悉Sencha Cmd以及如何使用它来管理项目的文件和构建过程: