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