[ci] format
This commit is contained in:
parent
fcfd166f2d
commit
eea824bee9
1 changed files with 3 additions and 1 deletions
|
@ -40,7 +40,9 @@ export default function startServer(app: NodeApp, options: Options) {
|
||||||
const handler = middleware(app);
|
const handler = middleware(app);
|
||||||
|
|
||||||
// Allow to provide host value at runtime
|
// Allow to provide host value at runtime
|
||||||
const host = getResolvedHostForHttpServer(process.env.HOST !== undefined && process.env.HOST !== '' ? process.env.HOST : options.host);
|
const host = getResolvedHostForHttpServer(
|
||||||
|
process.env.HOST !== undefined && process.env.HOST !== '' ? process.env.HOST : options.host
|
||||||
|
);
|
||||||
const server = createServer(
|
const server = createServer(
|
||||||
{
|
{
|
||||||
client,
|
client,
|
||||||
|
|
Loading…
Reference in a new issue