2020-10-12 19:19:35 -04:00
|
|
|
import './public-path';
|
2024-04-29 04:02:41 -04:00
|
|
|
import main from 'mastodon/main';
|
2023-06-02 09:00:27 -04:00
|
|
|
|
2018-07-13 21:56:41 -04:00
|
|
|
import { start } from '../mastodon/common';
|
2023-06-02 09:00:27 -04:00
|
|
|
import { loadLocale } from '../mastodon/locales';
|
2023-05-23 11:15:17 -04:00
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
2018-07-13 21:56:41 -04:00
|
|
|
|
|
|
|
start();
|
2017-05-11 05:26:06 -04:00
|
|
|
|
2023-06-02 09:00:27 -04:00
|
|
|
loadPolyfills()
|
|
|
|
.then(loadLocale)
|
|
|
|
.then(main)
|
2024-04-29 04:02:41 -04:00
|
|
|
.catch((e: unknown) => {
|
2023-06-02 09:00:27 -04:00
|
|
|
console.error(e);
|
|
|
|
});
|