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