This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-12 16:19:35 -07:00
|
|
|
import 'packs/public-path';
|
2022-10-11 02:39:52 -07:00
|
|
|
import loadPolyfills from 'flavours/glitch/load_polyfills';
|
2017-12-03 23:26:40 -08:00
|
|
|
|
2022-10-03 09:15:47 -07:00
|
|
|
loadPolyfills().then(async () => {
|
2022-10-11 02:39:52 -07:00
|
|
|
const { default: main } = await import('flavours/glitch/main');
|
2022-10-03 09:15:47 -07:00
|
|
|
|
|
|
|
return main();
|
2017-12-03 23:26:40 -08:00
|
|
|
}).catch(e => {
|
|
|
|
console.error(e);
|
|
|
|
});
|