mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-15 04:34:00 -05: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);
|
||
|
});
|