dead23angel / smarty-combine

Combine and minify many JS or CSS to one file
MIT License
19 stars 9 forks source link

Substitute relative url() with absolute url() #11

Closed leifnel closed 2 years ago

leifnel commented 2 years ago

Substitute relative url('subdir/image.jpg') with absolute url('/css/subdir/image.jpg')

urls relative to the css-file breaks, because the merged and minified file is served from eg /temp/cache instead of eg /css/subdir

This patch adds the "web-basedir" to relative dirs.

See https://stackoverflow.com/q/69548792/1678652