我在 Rails 应用程序中使用 svg 图像,它们位于 /app/assets/images 中。我还为预编译添加了 svg (config/application.rb):
config.assets.precompile += %w( .svg )
但是,在生产中使用它会导致异常:
ActionView::Template::Error (image.svg isn't precompiled):
我需要添加什么来预编译 svg 并使其可访问?
我在 Rails 应用程序中使用 svg 图像,它们位于 /app/assets/images 中。我还为预编译添加了 svg (config/application.rb):
config.assets.precompile += %w( .svg )
但是,在生产中使用它会导致异常:
ActionView::Template::Error (image.svg isn't precompiled):
我需要添加什么来预编译 svg 并使其可访问?