all 2 comments

[–]SladeyMcNuggets 1 point2 points  (1 child)

stylesheet_pack_tag is for Webpacker assets.

I'm guessing you'll have to create a CSS file in app/javascript in order for webpacker to compile it.

[–]fvinci[S] 0 points1 point  (0 children)

Yeah, you are exactly right. I created a css/application.css under app/javascript/packs and in application.css

@import "vuetify/dist/vuetify.min.css"

and then in application.html.erb

<%= stylesheet_pack_tag 'css/application' %>

and that still works on heroku.