So in my:
application.css.scss
file I have the following line:
background-image: cloudinary-url('billie-piper-reading-book', $width: '100%');
In development environment it loads with this asset pipeline:
http://localhost:3000/assets/billie-piper-reading-book
Which results in:
GET http://localhost:3000/assets/billie-piper-reading-book 404 (Not Found)
I would assume, that cloudinary-url
should genereate something like http://res.cloudinary.com/demo/image/upload/billie-piper-reading-book
...
Any reason?
Any support will be appreciated