1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Sassの利用環境を整える 〜キャッシュ(.sass-cache)フォルダについて〜

Last updated at Posted at 2015-06-10

Sassファイルをコンパイルすると
カレントディレクトリに.sass-cacheというフォルダが生成される
※デフォルトの設定だとできる。

これいるの?

watchオプションでたびたびコンパイルする処理を早くするため、
必要。

キャッシュフォルダを違う場所に変更する。

キャッシュフォルダの場所を指定するには
「--cache-location」オプションをつける。

オプションの後に半角スペースで指定

sass --watch --cache-location test

や

sass --watch --cache-location test/cache/.sass-cache

など
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?