mirror of
https://github.com/glitch-soc/mastodon
synced 2025-05-28 14:46:32 +00:00
13 lines
286 B
JavaScript
13 lines
286 B
JavaScript
import './public-path';
|
|
import { loadPolyfills } from '../mastodon/polyfills';
|
|
import { start } from '../mastodon/common';
|
|
|
|
start();
|
|
|
|
loadPolyfills().then(async () => {
|
|
const { default: main } = await import('mastodon/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|