- 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
15 lines
298 B
TypeScript
15 lines
298 B
TypeScript
/**
|
|
* @param {Html} node
|
|
* @returns {string}
|
|
*/
|
|
export function html(node: Html): string;
|
|
export namespace html {
|
|
export { htmlPeek as peek };
|
|
}
|
|
import type { Html } from 'mdast';
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
declare function htmlPeek(): string;
|
|
export {};
|
|
//# sourceMappingURL=html.d.ts.map
|