- 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
361 B
TypeScript
9 lines
361 B
TypeScript
import type { Plugin as VitePlugin } from 'vite';
|
|
import type { AstroSettings } from '../types/astro.js';
|
|
export declare const BEFORE_HYDRATION_SCRIPT_ID: string;
|
|
export declare const PAGE_SCRIPT_ID: string;
|
|
export declare const PAGE_SSR_SCRIPT_ID: string;
|
|
export default function astroScriptsPlugin({ settings }: {
|
|
settings: AstroSettings;
|
|
}): VitePlugin;
|