- 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
360 B
TypeScript
9 lines
360 B
TypeScript
import type { ClientDirective } from '../../types/public/integrations.js';
|
|
/**
|
|
* Hydrate this component when one of it's children becomes visible
|
|
* We target the children because `astro-island` is set to `display: contents`
|
|
* which doesn't work with IntersectionObserver
|
|
*/
|
|
declare const visibleDirective: ClientDirective;
|
|
export default visibleDirective;
|