mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-15 20:22:59 -05:00
526fe33e2f
Port a3a2414f0ea91c26276728fc7f9d837f81828075 to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
import 'packs/public-path';
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
loadPolyfills().then(async () => {
|
|
const { default: main } = await import('flavours/glitch/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|