Removes comment as it was breaking Vite rewriting import path (#39558)

This commit is contained in:
Echo
2026-06-22 15:21:03 +02:00
committed by GitHub
parent 7fc1921350
commit 0c7d619b98

View File

@@ -437,8 +437,7 @@ async function toLoadedLocale(localeString: string) {
}
if (!loadedLocales.has(locale)) {
log('Locale %s not loaded, importing...', locale);
// Ignore the INEFFECTIVE_DYNAMIC_IMPORT Vite warning, since the static import location is inside an inlined web worker.
const { importEmojiData } = await import(/* @vite-ignore */ './loader');
const { importEmojiData } = await import('./loader');
await importEmojiData(locale);
return locale;
}