mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2025-02-06 11:37:42 +00:00
12 lines
277 B
JavaScript
12 lines
277 B
JavaScript
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);
|
|
});
|