Skip to content

Commit

Permalink
Pass manifest too
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewp committed May 24, 2024
1 parent a934074 commit 6848e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/astro/src/container/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ export class experimental_AstroContainer {
): Promise<experimental_AstroContainer> {
const { streaming = false, manifest, renderers = [], resolve } = containerOptions;
const astroConfig = await validateConfig(ASTRO_CONFIG_DEFAULTS, process.cwd(), 'container');
return new experimental_AstroContainer({ streaming, renderers, astroConfig, resolve });
return new experimental_AstroContainer({ streaming, manifest, renderers, astroConfig, resolve });
}

// NOTE: we keep this private via TS instead via `#` so it's still available on the surface, so we can play with it.
Expand Down

0 comments on commit 6848e58

Please sign in to comment.