SSRManifest: {
    adapterName: string;
    assets: Set<string>;
    assetsPrefix?: AssetsPrefix;
    base: string;
    buildFormat: "file" | "directory" | "preserve";
    checkOrigin: boolean;
    clientDirectives: Map<string, string>;
    componentMetadata: SSRResult["componentMetadata"];
    compressHTML: boolean;
    entryModules: Record<string, string>;
    experimentalEnvGetSecretEnabled: boolean;
    i18n: SSRManifestI18n | undefined;
    inlinedScripts: Map<string, string>;
    middleware: MiddlewareHandler;
    pageMap?: Map<ComponentPath, ImportComponentInstance>;
    pageModule?: SinglePageBuiltModule;
    renderers: SSRLoadedRenderer[];
    rewritingEnabled: boolean;
    routes: RouteInfo[];
    site?: string;
    trailingSlash: "always" | "never" | "ignore";
}

Type declaration