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