mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2026-01-14 02:41:14 +01:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
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: unknown) => {
|
|
console.error(e);
|
|
});
|