- 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
6 lines
361 B
TypeScript
6 lines
361 B
TypeScript
import type { SSRResult } from '../../../types/public/internal.js';
|
|
import type { MaybeRenderHeadInstruction, RenderHeadInstruction } from './instruction.js';
|
|
export declare function renderAllHeadContent(result: SSRResult): any;
|
|
export declare function renderHead(): RenderHeadInstruction;
|
|
export declare function maybeRenderHead(): MaybeRenderHeadInstruction;
|