web-dev-qa-db-ja.com

資産「logo.png」は資産パイプラインに存在しません

In Rails 5.1.3 app/assets/imagesのロゴファイルを変更したら、エラーは何を修正すればよいかわからない。

The asset "logo.png" is not present in the asset pipeline.

すでにRailsを再起動してみてください。Rails clean、RailsまたはRails asset:precompile

ここに私のconfig/initializers/assets.rb

# Be sure to restart your server when you modify this file.

# Version of your assets, change this if you want to expire all your assets.
Rails.application.config.assets.version = '1.0'

# Add additional assets to the asset load path.
# Rails.application.config.assets.paths << Emoji.images_path
# Add Yarn node_modules folder to the asset load path.
Rails.application.config.assets.paths << Rails.root.join('node_modules')

# Precompile additional assets.
# application.js, application.css, and all non-JS/CSS in the app/assets
# folder are already added.
# Rails.application.config.assets.precompile += %w( admin.js admin.css )
24
T.Kul

同様の問題がありました。解決策は、イメージにファイル拡張子を追加することでした。

= image_tag 'logo', alt: ''

= image_tag 'logo.jpg', alt: ''
24
Abdullah

ここに投稿されていないので...私にとってはRails server。

enter image description here

16
SkyWriter

ここで私の問題を解決するために私がやったことは、私のコードに何も問題がないと仮定し、それが機能する:

  1. 次のコマンドを使用して、/ tmp/assetsのアセットキャッシュを消去します。
$rake tmp:clear

前述のとおり ここ

  1. 次のコマンドを使用して、アセットを再度プリコンパイルします。
$rake assets:precompile
3
T.Kul

そのようにしてください

最初に行きます

app/assets/images

2番目のフォルダーロゴの作成

app/assets/images/logos

ロゴに3番目のイメージを配置

app/assets/images/logos/logo.png

そして、アプリケーションに最後に入れて、このコードを入れます

<%= link_to image_tag("logos/logo.png"), root_path %>

どこでも動作します

1
AzBest