/// // Next.js environment variable types for TypeScript // Process.env is automatically typed by Next.js for NEXT_PUBLIC_ variables // Define the window.env global for Docker runtime configuration interface Window { env?: { [key: string]: string | undefined; WREN_API_TOKEN?: string; API_BASE_URL?: string; MARINE_TRAFFIC_API_KEY?: string; STRIPE_PUBLISHABLE_KEY?: string; }; }