- 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
7 lines
308 B
TypeScript
7 lines
308 B
TypeScript
import { type Plugin as VitePlugin } from 'vite';
|
|
import type { AstroSettings } from '../types/astro.js';
|
|
/** Returns a Vite plugin used to alias paths from tsconfig.json and jsconfig.json. */
|
|
export default function configAliasVitePlugin({ settings, }: {
|
|
settings: AstroSettings;
|
|
}): VitePlugin | null;
|