このガイドを使用しても、gem とコンパスを使用して auto-prefixer をインストールできませんでした。
https://github.com/postcss/autoprefixer#compass
gem install autoprefixer-rails
and add post-compile hook to config.rb:
require 'autoprefixer-rails'
on_stylesheet_saved do |file|
css = File.read(file)
File.open(file, 'w') do |io|
io << AutoprefixerRails.process(css)
end
end
「gem install autoprefixer-rails」と入力したときに、どのディレクトリにいるかは重要ですか? 「コンパスウォッチ」と呼んでいるディレクトリにいる必要がありますか?
関数を config.rb に追加しましたが、コンパスはまだ autoprefixer でコンパイルされていません。