From 18f05bca49cc82748e78024111e7c3df6dbc3150 Mon Sep 17 00:00:00 2001 From: Lasse Rafn Date: Mon, 18 Sep 2017 14:24:35 +0200 Subject: [PATCH] Update Configuration.php .localhost default domain --- cli/Valet/Configuration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Valet/Configuration.php b/cli/Valet/Configuration.php index 4fb2420..a14bd6c 100644 --- a/cli/Valet/Configuration.php +++ b/cli/Valet/Configuration.php @@ -111,7 +111,7 @@ function createCertificatesDirectory() function writeBaseConfiguration() { if (! $this->files->exists($this->path())) { - $this->write(['domain' => 'dev', 'paths' => []]); + $this->write(['domain' => 'localhost', 'paths' => []]); } }