css - Remove double quotes from asset_path output -


i using asset_path in selector add multiple background images it.

on scss, code:

background-image: url(asset-path('bg1.jpg')), url(asset-path('bg2.jpg')), url(asset-path('bg3.jpg')) 

and output in css

background-image: url("somehashbg1.jpg"), url("somehashbg2.jpg"), url("somehashbg3.jpg") 

css not rendering it. not expecting quotes inside url(...) multiple backgrounds

is there way strip quotes out of output of asset-path?

asset-url without url() way go

background-image: asset-url(bg1.jpg'), asset-url('bg2.jpg'), asset-url('bg3.jpg')


Comments