mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-29 11:30:28 -05:00
f4fe985a03
Port fc3d248df7
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
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);
|
|
});
|