Files
mastodon-sakyey/app/javascript/flavours/glitch/entrypoints/application.ts

11 lines
260 B
TypeScript
Raw Normal View History

import { loadLocale } from 'flavours/glitch/locales';
import main from 'flavours/glitch/main';
import { loadPolyfills } from 'flavours/glitch/polyfills';
2017-12-03 23:26:40 -08:00
loadPolyfills()
.then(loadLocale)
.then(main)
.catch((e: unknown) => {
console.error(e);
});