astro
Version:
Astro is a modern site builder with web best practices, performance, and DX front-of-mind.
9 lines (8 loc) • 380 B
TypeScript
import type { AstroConfig } from '../../../types/public/config.js';
export { getConfigHashInput } from './input.js';
/**
* Produce a sha256 over the output-affecting subset of the resolved config (see
* {@link getConfigHashInput}). A mismatch invalidates the whole incremental
* build cache.
*/
export declare function computeConfigHash(config: AstroConfig): Promise<string>;