Open 47ronin opened 9 years ago
The problem lies with leaflet.css in bower_components/leaflet/dist/leaflet.css The current workaround is: Paths like url(images/layers.png) need to be changed to url('../images/layers.png') in order for grunt build to work.
leaflet.css
bower_components/leaflet/dist/leaflet.css
url(images/layers.png)
url('../images/layers.png')
grunt build
Leaflet 1.0-b2 is now available and may have fixed some dependency issues. Give it a shot https://github.com/Leaflet/Leaflet/blob/master/CHANGELOG.md#10-beta2-october-14-2015
The problem lies with
leaflet.css
inbower_components/leaflet/dist/leaflet.css
The current workaround is: Paths likeurl(images/layers.png)
need to be changed tourl('../images/layers.png')
in order forgrunt build
to work.