/******************************************************************************** * Render Cache Compile Mode * * The compile mode of a render is part of its cache identity: it decides * minification, tree shaking and inline sourcemaps for the hydration bundle and * the page module a cached render carries. `environment` does not imply it, so * it gets its own key segment. * * @module core/cache/keys/render-compile-mode ********************************************************************************/ /** Compile mode of every artifact reachable from one render cache prefix. */ export type RenderCompileMode = "development" | "production"; /** Segment that names the compile mode inside a render cache key. */ export declare const RENDER_COMPILE_MODE_SEGMENTS: Readonly>; /** True when `segment` names a compile mode in a render cache key. */ export declare function isRenderCompileModeSegment(segment: string | undefined): boolean; //# sourceMappingURL=render-compile-mode.d.ts.map