- 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
5 lines
295 B
TypeScript
5 lines
295 B
TypeScript
import type { ModuleInfo } from '../core/module-loader/index.js';
|
|
import type { PluginMetadata } from './types.js';
|
|
export declare function getAstroMetadata(modInfo: ModuleInfo): PluginMetadata['astro'] | undefined;
|
|
export declare function createDefaultAstroMetadata(): PluginMetadata['astro'];
|