mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-11 17:35:07 +00:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import 'mastodon/public-path';
|
|
import loadPolyfills from 'mastodon/load_polyfills';
|
|
import { start } from 'mastodon/common';
|
|
|
|
start();
|
|
|
|
loadPolyfills().then(() => {
|
|
require('mastodon/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|