- Move Astro files from dealplustech-astro/ to project root - Update Dockerfile: PORT environment variable (default 80) - Add vite.config.ts with allowedHosts: true - Matches nixpacks behavior for Easypanel deployment - No hardcoded ports or domains
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
type EncodeTrieNode = string | {
|
|
v?: string;
|
|
n: number | Map<number, EncodeTrieNode>;
|
|
o?: string;
|
|
};
|
|
export declare const htmlTrie: Map<number, EncodeTrieNode>;
|
|
export {};
|
|
//# sourceMappingURL=encode-html.d.ts.map
|