diff --git a/code/lib/core-server/src/build-dev.ts b/code/lib/core-server/src/build-dev.ts index da8e2d2c2972..94596f8f6ba8 100644 --- a/code/lib/core-server/src/build-dev.ts +++ b/code/lib/core-server/src/build-dev.ts @@ -30,7 +30,7 @@ import { getManagerBuilder, getPreviewBuilder } from './utils/get-builders'; export async function buildDevStandalone( options: CLIOptions & LoadOptions & BuilderOptions -): Promise<{ port: number }> { +): Promise<{ port: number; address: string; networkAddress: string }> { const { packageJson, versionUpdates, releaseNotes } = options; const { version } = packageJson; @@ -171,5 +171,5 @@ export async function buildDevStandalone( previewTotalTime, }); } - return { port }; + return { port, address, networkAddress }; }