10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
import { loadLocale } from 'mastodon/locales';
|
|
import main from 'mastodon/main';
|
|
import { loadPolyfills } from 'mastodon/polyfills';
|
|
|
|
loadPolyfills()
|
|
.then(loadLocale)
|
|
.then(main)
|
|
.catch((e: unknown) => {
|
|
console.error(e);
|
|
});
|