Remove deprecated scripts for adding head-matter to wt_config.xml, including Python and Bash implementations, to streamline configuration management.

This commit is contained in:
Torsten Schulz (local)
2025-12-04 16:34:45 +01:00
parent 4b674c7c60
commit 6e9116e819
13187 changed files with 1493219 additions and 337 deletions

16
client/node_modules/unhead/dist/legacy.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import { createUnhead } from './index.js';
export { useHead, useHeadSafe, useSeoMeta, useServerHead, useServerHeadSafe, useServerSeoMeta } from './index.js';
import { U as Unhead, R as ResolvableHead, C as CreateHeadOptions } from './shared/unhead.Prz0gZXE.js';
export { u as useScript } from './shared/unhead.kTflSlNr.js';
import './shared/unhead.DQUgqVjB.js';
import 'hookable';
declare const activeHead: {
value: Unhead<any> | null;
};
declare function getActiveHead(): Unhead<any> | null;
declare function createServerHead<T extends Record<string, any> = ResolvableHead>(options?: CreateHeadOptions): Unhead<T>;
declare function createHead<T extends Record<string, any> = ResolvableHead>(options?: CreateHeadOptions): Unhead<T>;
declare const createHeadCore: typeof createUnhead;
export { activeHead, createHead, createHeadCore, createServerHead, createUnhead, getActiveHead };