mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-03-24 19:09:30 +00:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
import 'packs/public-path';
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
loadPolyfills().then(async () => {
|
|
const { default: main } = await import('flavours/glitch/util/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|