Remix - Deployment
Given this Remix loader code snippet, what will be the value of
apiUrl if process.env.API_URL is undefined?
export async function loader() {
const apiUrl = process.env.API_URL || 'https://default.api.com';
return { apiUrl };
}