/// /** * Type definitions for environment variables */ interface ImportMetaEnv { readonly PUBLIC_SITE_URL: string; // Add other environment variables here as needed } interface ImportMeta { readonly env: ImportMetaEnv; }