mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 04:54:25 +00:00
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
||
|
|
||
|
loadPolyfills().then(() => {
|
||
|
require('flavours/glitch/util/main').default();
|
||
|
}).catch(e => {
|
||
|
console.error(e);
|
||
|
});
|