4

私はsenchatouch2を使用して開発されたモバイルWebサイトで作業しています。senchacmdv3を使用して本番ビルドを生成しました。本番ビルドをテストしたところ、カスタムcssファイルがフォルダー構造に含まれているのに、カスタムスタイルがUI要素に適用されていないことがわかりました。

このアプリケーションではSASS/COMPASSを使用していません。どこがうまくいかなかったのか、何かを逃したのかについてのアイデアはありますか?カスタムcssファイルを別の方法で処理し、本番ビルドの作成中に何か特別なことをする必要がありますか?本番ビルドの作成中に、これらのカスタムcssファイルの参照をapp.jsonに含める必要がありますか?助けてください。

ありがとう

4

1 に答える 1

10

app.jsonファイルで参照を指定するだけです。app.cssファイルの後に追加

/**
         * List of all CSS assets in the right inclusion order.
         * Each item is an object with the following format:
         *      {
         *          "path": "path/to/item.css" // Relative path to this app.json file
         *          "update": "delta"          // (Optional)
         *                                     // - If not specified, this file will only be loaded once, and
         *                                     //  -cached inside localStorage until this value is changed to either one below
         *                                     //  - "delta" to enable over-the-air delta update for this file
         *                                     //  - "full" means full update will be made when this file changes
         *
         *      }
         */
于 2013-01-31T05:03:10.183 に答える