Remix - Advanced Patterns
You wrote this Remix loader to get translations:
Why might this cause a problem when running the app?
export async function loader({ request }) {
const lang = detectLanguage(request);
const translations = loadTranslations(lang);
return { translations };
}Why might this cause a problem when running the app?
