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.
|
import 'packs/public-path';
|
|
import { loadLocale } from 'flavours/glitch/locales';
|
|
import main from "flavours/glitch/main";
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
loadPolyfills()
|
|
.then(loadLocale)
|
|
.then(main)
|
|
.catch(e => {
|
|
console.error(e);
|
|
});
|