2020-10-13 02:19:35 +03:00
|
|
|
import './public-path';
|
2023-05-09 15:55:35 +03:00
|
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
2018-07-14 04:56:41 +03:00
|
|
|
import { start } from '../mastodon/common';
|
|
|
|
|
|
|
|
start();
|
2017-05-11 12:26:06 +03:00
|
|
|
|
2022-10-03 19:15:47 +03:00
|
|
|
loadPolyfills().then(async () => {
|
2022-10-04 00:08:38 +03:00
|
|
|
const { default: main } = await import('mastodon/main');
|
2022-10-03 19:15:47 +03:00
|
|
|
|
|
|
|
return main();
|
2017-07-18 01:19:02 +03:00
|
|
|
}).catch(e => {
|
2017-06-11 11:42:42 +03:00
|
|
|
console.error(e);
|
2017-05-30 16:11:15 +03:00
|
|
|
});
|