Rails を学習していて、答えが見つからない問題に遭遇しました。「/ public/stylesheets」に「print.css」と「screen.css」の2つのcssファイルがあります
それらをレイアウトの「application.html.erb」にロードしてサーバーを起動すると、両方のファイルがローカル Web サイトに表示されません。これはエラーです:
GET http://localhost:3000/assets/print.css 404 (Not Found)
GET http://localhost:3000/assets/screen.css 404 (Not Found)
「application.html.erb」のコードは次のとおりです。
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<%= csrf_meta_tag %>
<%= stylesheet_link_tag "screen", "print" %>
</head>
<body>
<%= yield %>
</body>
</html>
さらに私はこれを追加しました
config.assets.compile = true
私の「./config/environments/development.rb」に移動して実行しました
bundle exec rake assets:precompile RAILS_ENV=development
無駄に。
お知らせ下さい!