From defe647d32fde8ee88af8d3a7ad678f1f1475fb8 Mon Sep 17 00:00:00 2001 From: Dwight Watson Date: Thu, 2 Feb 2017 21:17:40 +1100 Subject: [PATCH] Don't wrap asset path in default domain --- src/Illuminate/Foundation/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/helpers.php b/src/Illuminate/Foundation/helpers.php index 11a1799382a4..b07dd8800777 100644 --- a/src/Illuminate/Foundation/helpers.php +++ b/src/Illuminate/Foundation/helpers.php @@ -583,7 +583,7 @@ function mix($path) return $shouldHotReload = file_exists(public_path('hot')) ? new HtmlString("http://localhost:8080{$manifest[$path]}") - : new HtmlString(url($manifest[$path])); + : new HtmlString($manifest[$path]); } }