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