Skip to content

Commit 1ba4a0d

Browse files
committed
Better SSR default port (1n3r714)
1 parent 13d0d19 commit 1ba4a0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/inertia.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
'enabled' => false,
2222

23-
'url' => 'http://127.0.0.1:8080/render',
23+
'url' => 'http://127.0.0.1:13714/render',
2424

2525
],
2626

src/Ssr/HttpGateway.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function dispatch(array $page): ?Response
2020
return null;
2121
}
2222

23-
$url = Config::get('inertia.ssr.url', 'http://127.0.0.1:8080/render');
23+
$url = Config::get('inertia.ssr.url', 'http://127.0.0.1:13714/render');
2424

2525
try {
2626
$response = Http::post($url, $page)->throw()->json();

0 commit comments

Comments
 (0)