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