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