前提・実現したいこと
Railsで作成中のポートフォリオに動画を埋め込みたいと思いapp/assets/videos
以下にmp4形式の動画ファイルを置き、video_tag
で読み込もうとしましたが、404エラーになってしまいます。
わかる方いましたらぜひ知恵を貸して頂きたいです。
よろしくお願いしますm(__)m
発生している問題・エラーメッセージ
Failed to load resource: the server responded with a status of 404 ()
ソースコード
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') Rails.application.config.assets.paths << Rails.root.join('app/assets/videos') # 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 )
htmlファイル
<%= video_tag("/assets/videos/sample.mp4", :autoplay => true, :loop => true) %>
環境
Rails 6.0.3.4
ruby 2.6.3p62
AWS cloud9
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。