Skip to content

Commit ec3925f

Browse files
authored
Merge pull request #4 from SiebeVE/bugfix/config-set
Use correct config key for expose server
2 parents 54b28b5 + 1c4de5a commit ec3925f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Commands/ServeCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ protected function loadConfiguration(string $configFile)
2020
throw_if(! file_exists($configFile), new InvalidArgumentException("Invalid config file {$configFile}"));
2121

2222
$localConfig = require $configFile;
23-
config()->set('expose', $localConfig);
23+
config()->set('expose-server', $localConfig);
2424
}
2525

2626
public function handle()

0 commit comments

Comments
 (0)