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';
|
2023-06-02 06:00:27 -07:00
|
|
|
import { loadLocale } from 'flavours/glitch/locales';
|
|
|
|
import main from "flavours/glitch/main";
|
2023-05-09 05:55:35 -07:00
|
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
2017-12-03 23:26:40 -08:00
|
|
|
|
2023-06-02 06:00:27 -07:00
|
|
|
loadPolyfills()
|
|
|
|
.then(loadLocale)
|
|
|
|
.then(main)
|
|
|
|
.catch(e => {
|
|
|
|
console.error(e);
|
|
|
|
});
|