0

開発にはsenhca touchを使用しています。sencha touch でテーマをカスタマイズするために sass が使用されていることは知っています。必要なマテリアルをインストールしましたが、scss ファイルをコンパイルすると、次のエラーが表示されます。

You must compile individual stylesheets from the project directory.

私は混乱しています。誰でも私を助けることができますか?フルパスを指定してコンパイルしようとしましたが、まだ機能していません。Config=.rb は以下の通りです..

 # Get the directory that this configuration file exists in
 dir = File.dirname(__FILE__)
 # Load the sencha-touch framework automatically.
 load File.join(dir, '..', 'themes')
 # Compass configurations
 sass_path    = dir
 css_path     = File.join(dir, "..", "css")
 environment  = :production
 output_style = :compressed
4

1 に答える 1

1

では、などconfig.rbのファイルパスは、 存在するフォルダーに相対的である必要があります。この問題があるかどうかを確認してくださいcss_dirsass_dirconfig.rb

于 2013-01-01T12:35:17.467 に答える