【Rails】The asset "application.css"is not present in the asset pipeline. 해결책

1216 단어 RubyRails
rails 응용 프로그램 개발을 진행할 때 방문할 때 다음과 같은 화면이 나타난다.
(괜찮을지도 모르지만, 제가 Rspec을 도입해서 일어났어요.)

컨디션


ruby 2.7.5
Ruby on Rails 6.1.4.4
Docker 20.10.11/docker-compose 2.2.1
PostgreSQL 14.1

까닭


확인log/production.log 후 다음 오류가 발생했습니다.
ActionView::Template::Error (The asset "application.css" is not present in the asset pipeline.):

해결책

config/environments/production.rb 다음과 같은 수정을 거쳐 제거되었습니다.
- config.assets.compile = false
+ config.assets.compile = true

좋은 웹페이지 즐겨찾기