Rails: File to import not found or unreadable: “bootstrap”

前端 未结 8 1386
野的像风
野的像风 2021-02-19 14:03

I am relatively new to programming, therefore I hope that the question is not absolutely stupid.

I got a problem concerning my rails app.

I try to use bootstrap.

相关标签:
8条回答
  • 2021-02-19 14:31

    I had a similar problem and saw Habax's solution and tried the last step first.

    I just restarted the server.

    That turned out to be enough. Hope that helps.

    0 讨论(0)
  • 2021-02-19 14:33

    I just want to past my resolution as a reference. I have also encountered this issue today. if you also using emacs with scss mode it may be helpful. as default when you save scss file emacs will auto-compile these scss file and create a responding .css file. then you just need to delete these .css file. or put below code to .emacs as permanent fix

    (setq scss-compile-at-save nil) ;; disable the auto-compilation
    
    0 讨论(0)
提交回复
热议问题