Home / Type/ SerializedSSRManifest Type — astro Architecture

SerializedSSRManifest Type — astro Architecture

Architecture documentation for the SerializedSSRManifest type/interface in types.ts from the astro codebase.

Entity Profile

Dependency Diagram

graph TD
  1ff84486_81e5_fec7_6abf_adee05337ca8["SerializedSSRManifest"]
  f898a077_c422_60c6_8128_2cd592ad264d["types.ts"]
  1ff84486_81e5_fec7_6abf_adee05337ca8 -->|defined in| f898a077_c422_60c6_8128_2cd592ad264d
  style 1ff84486_81e5_fec7_6abf_adee05337ca8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/astro/src/core/app/types.ts lines 162–193

export type SerializedSSRManifest = Omit<
	SSRManifest,
	| 'middleware'
	| 'routes'
	| 'assets'
	| 'componentMetadata'
	| 'inlinedScripts'
	| 'clientDirectives'
	| 'serverIslandNameMap'
	| 'key'
	| 'rootDir'
	| 'srcDir'
	| 'cacheDir'
	| 'outDir'
	| 'publicDir'
	| 'buildClientDir'
	| 'buildServerDir'
> & {
	rootDir: string;
	srcDir: string;
	cacheDir: string;
	outDir: string;
	publicDir: string;
	buildClientDir: string;
	buildServerDir: string;
	routes: SerializedRouteInfo[];
	assets: string[];
	componentMetadata: [string, SSRComponentMetadata][];
	inlinedScripts: [string, string][];
	clientDirectives: [string, string][];
	key: string;
};

Frequently Asked Questions

What is the SerializedSSRManifest type?
SerializedSSRManifest is a type/interface in the astro codebase, defined in packages/astro/src/core/app/types.ts.
Where is SerializedSSRManifest defined?
SerializedSSRManifest is defined in packages/astro/src/core/app/types.ts at line 162.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free