2025-05-16 15:26:12 +02:00
|
|
|
import { loadLocale } from 'mastodon/locales';
|
2024-04-29 10:02:41 +02:00
|
|
|
import main from 'mastodon/main';
|
2025-05-16 15:26:12 +02:00
|
|
|
import { loadPolyfills } from 'mastodon/polyfills';
|
2017-05-11 02:26:06 -07:00
|
|
|
|
2023-06-02 15:00:27 +02:00
|
|
|
loadPolyfills()
|
|
|
|
|
.then(loadLocale)
|
|
|
|
|
.then(main)
|
2024-04-29 10:02:41 +02:00
|
|
|
.catch((e: unknown) => {
|
2023-06-02 15:00:27 +02:00
|
|
|
console.error(e);
|
|
|
|
|
});
|