mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-12 18:03:03 +00:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
|
import loadPolyfills from './util/load_polyfills';
|
||
|
|
||
|
loadPolyfills().then(() => {
|
||
|
require('./util/main').default();
|
||
|
}).catch(e => {
|
||
|
console.error(e);
|
||
|
});
|