You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
277 B

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);
});