diff --git a/packages/astro/src/compiler/index.ts b/packages/astro/src/compiler/index.ts index 215a80acaf..92777f82dd 100644 --- a/packages/astro/src/compiler/index.ts +++ b/packages/astro/src/compiler/index.ts @@ -107,7 +107,7 @@ interface CompileComponentOptions { /** Compiles an Astro component */ export async function compileComponent(source: string, { compileOptions, filename, projectRoot }: CompileComponentOptions): Promise { const result = await transformFromSource(source, { compileOptions, filename, projectRoot }); - const { hostname, port } = compileOptions.astroConfig.devOptions + const { hostname, port } = compileOptions.astroConfig.devOptions; const site = compileOptions.astroConfig.buildOptions.site || `http://${hostname}:${port}`; // return template