You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In switching over from sass-rails to dartsass-rails, I noticed the asset path helpers no longer work. In development mode, something like this works fine:
div {
background-image: url("path/in/assets/to/image.jpg");
}
but in production, neither that nor this works:
div {
background-image: asset-url("path/in/assets/to/image.jpg");
}