mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 04:13:01 +00:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
import 'packs/public-path';
|
|
import loadPolyfills from 'flavours/glitch/load_polyfills';
|
|
|
|
loadPolyfills().then(async () => {
|
|
const { default: main } = await import('flavours/glitch/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|