0

I have been developing an app locally with Rails 6 sprinkled with Vue and Vuetify front end. It all works fine locally. However, when I try to deploy it from Heroku I get the following error in the debug console

[Vuetify] v-ripple can only be used on block-level elements

The site loads but but looses all the formatting so just looks like plain text. I have found this previous post but none of these solutions worked for me.

Tomas
  • 318
  • 3
  • 11

1 Answers1

0

Found the Solution for me. I still had stylesheet_link_tag instead of stylesheet_pack_tag in the layouts/application.html.erb. I changed from 'link' to 'pack' and it worked. The answer to this post helped me find the answer

Tomas
  • 318
  • 3
  • 11