mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-03 17:54:01 +00:00
cc93cd5d6c
Port 216dbaedaf
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
import 'packs/public-path';
|
|
import loadPolyfills from 'flavours/glitch/util/load_polyfills';
|
|
|
|
loadPolyfills().then(async () => {
|
|
const { default: main } = import('flavours/glitch/util/main');
|
|
|
|
return main();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|