Skip to content

Commit

Permalink
Don't wrap asset path in default domain (#17727)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwightwatson authored and taylorotwell committed Feb 2, 2017
1 parent 55e01ca commit 55efbf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
}

Expand Down

0 comments on commit 55efbf0

Please sign in to comment.