Skip to content

Commit

Permalink
fix: use client_url instead of url (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaulz committed Sep 2, 2022
1 parent 4b3d1f2 commit 94c3ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ protected function getClientDevServerPathUrl(string $path): string
return $this->getDevServerPathUrl($path);
}

return Str::of($this->config('dev_server.url'))->finish('/')->append($path);
return Str::of($this->config('dev_server.client_url'))->finish('/')->append($path);
}

/**
Expand Down

0 comments on commit 94c3ce1

Please sign in to comment.