mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
9e133e2527
Port 44cd88adc4
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
import 'packs/public-path';
|
|
import { loadLocale } from 'flavours/glitch/load_locale';
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
loadPolyfills().then(loadLocale).then(async () => {
|
|
const { default: main } = await import('flavours/glitch/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|