diff --git a/src/TwigExtension.php b/src/TwigExtension.php index 14fed21..1f9fb7e 100644 --- a/src/TwigExtension.php +++ b/src/TwigExtension.php @@ -253,7 +253,8 @@ class TwigExtension extends \Twig_Extension { * in an tag. Requesting the URL will cause the image to be created. */ public function imageStyle($path, $style) { - return ImageStyle::load($style)->buildUrl($path); + $url = ImageStyle::load($style)->buildUrl($path); + return file_url_transform_relative($url); } }