mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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);
|
|
});
|