@netlify/config
Version:
Netlify config module
17 lines (16 loc) • 442 B
TypeScript
export function getHeadersPath({ build: { publish } }: {
build: {
publish: any;
};
}): string;
export function addHeaders({ config: { headers: configHeaders, ...config }, headersPath, logs, featureFlags, }: {
config: {
[x: string]: any;
headers: any;
};
headersPath: any;
logs: any;
featureFlags: any;
}): Promise<{
headers: import("packages/headers-parser/lib/types.js").Header[];
}>;