Remix - Deployment
Consider this Remix loader function:
export async function loader() {
const apiEndpoint = process.env.API_ENDPOINT || 'https://default.example.com';
return { apiEndpoint };
} If API_ENDPOINT is set to https://api.example.com in your environment, what will apiEndpoint be?