ExtJS app.json和bootstrap.json文件

时间:2013-12-08 10:46:42

标签: extjs extjs4 extjs4.2

如何在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":[]}

1 个答案:

答案 0 :(得分:3)

我认为您要求将CSS文件添加到应用程序的app.json文件中。基本上,您需要将以下部分添加到app.json,然后运行sencha app build(它将为您更新bootstrap.json)。

"css": [
    {
        "path": "resources/css/my-styles.css"
    }
],

然而,使用Sencha Cmd初始化的项目本节将提供有用的评论。花几分钟时间熟悉Sencha Cmd以及如何使用它来管理项目的文件和构建过程:

http://docs.sencha.com/cmd/4.0.0/#!/guide/command_app_ext42