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

前端 未结 8 1384
野的像风
野的像风 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: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
    

提交回复
热议问题