mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-14 08:19:05 +00:00
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import { loadLocale } from 'flavours/glitch/locales';
|
|
import main from 'flavours/glitch/main';
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
loadPolyfills()
|
|
.then(loadLocale)
|
|
.then(main)
|
|
.catch((e: unknown) => {
|
|
console.error(e);
|
|
});
|