这是一个创建于 3973 天前的主题,其中的信息可能已经有所发展或是发生改变。
我在config.rb贴上这个也不行。
# Make a copy of sprites with a name that has no uniqueness of the hash.
on_sprite_saved do |filename|
if File.exists?(filename)
FileUtils.cp filename, filename.gsub(%r{-s[a-z0-9]{10}\.png$}, '.png')
end
end
# Replace in stylesheets generated references to sprites
# by their counterparts without the hash uniqueness.
on_stylesheet_saved do |filename|
if File.exists?(filename)
css = File.read filename
File.open(filename, 'w+') do |f|
f << css.gsub(%r{-s[a-z0-9]{10}\.png}, '.png')
end
end
end
2 条回复 • 1970-01-01 08:00:00 +08:00
|
|
1
fen 2013-12-31 10:32:39 +08:00
这是 compass 的特性,要到下个版本才有可能改善。 这两段代码只是复制了一张没有hash名的图片并修改css代码,他生成的带hash名 png 图片不要删除,否则会继续重新生成。
|