2017-05-30 23:11:15 +10:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2018-07-14 11:56:41 +10:00
|
|
|
import { start } from '../mastodon/common';
|
|
|
|
|
|
|
|
start();
|
2017-05-11 19:26:06 +10:00
|
|
|
|
2017-07-18 08:19:02 +10:00
|
|
|
loadPolyfills().then(() => {
|
|
|
|
require('../mastodon/main').default();
|
|
|
|
}).catch(e => {
|
2017-06-11 18:42:42 +10:00
|
|
|
console.error(e);
|
2017-05-30 23:11:15 +10:00
|
|
|
});
|