- 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
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
export default function html(): {
|
|
name: string;
|
|
options(options: any): void;
|
|
transform(source: string, id: string): Promise<{
|
|
code: string;
|
|
map: import("magic-string").SourceMap;
|
|
} | undefined>;
|
|
};
|