diff options
author | 2024-03-01 08:33:27 +0000 | |
---|---|---|
committer | 2024-03-01 08:33:27 +0000 | |
commit | 3351f7400e9d12a0e601d2eb9c9e35c97b73b853 (patch) | |
tree | 8c47a78f93e8bacfbe9d3bc61f3f038d16b0527f /packages/integrations/node/src | |
parent | 88a242b3fc342fbfbe869b0e87f00c9ed92e1b4a (diff) | |
download | astro-3351f7400e9d12a0e601d2eb9c9e35c97b73b853.tar.gz astro-3351f7400e9d12a0e601d2eb9c9e35c97b73b853.tar.zst astro-3351f7400e9d12a0e601d2eb9c9e35c97b73b853.zip |
[ci] format
Diffstat (limited to 'packages/integrations/node/src')
-rw-r--r-- | packages/integrations/node/src/standalone.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/node/src/standalone.ts b/packages/integrations/node/src/standalone.ts index 9567e8ab4..843055df3 100644 --- a/packages/integrations/node/src/standalone.ts +++ b/packages/integrations/node/src/standalone.ts @@ -10,7 +10,7 @@ import { createStaticHandler } from './serve-static.js'; import type { Options } from './types.js'; // Used to get Host Value at Runtime -export const hostOptions = (host: Options["host"]): string => { +export const hostOptions = (host: Options['host']): string => { if (typeof host === 'boolean') { return host ? '0.0.0.0' : 'localhost'; } |