2020-10-12 23:19:35 +00:00
|
|
|
import 'packs/public-path';
|
2022-10-11 08:41:15 +00:00
|
|
|
import loadPolyfills from 'flavours/glitch/utils/load_polyfills';
|
2017-12-04 07:26:40 +00:00
|
|
|
|
2022-10-03 16:15:47 +00:00
|
|
|
loadPolyfills().then(async () => {
|
2022-10-11 08:41:15 +00:00
|
|
|
const { default: main } = await import('flavours/glitch/utils/main');
|
2022-10-03 16:15:47 +00:00
|
|
|
|
|
|
|
return main();
|
2017-12-04 07:26:40 +00:00
|
|
|
}).catch(e => {
|
|
|
|
console.error(e);
|
|
|
|
});
|