mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 23:41:37 +01:00
fe7db7905f
Port 36909065b5
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
15 lines
355 B
TypeScript
15 lines
355 B
TypeScript
import '@/entrypoints/public-path';
|
|
|
|
import { start } from 'flavours/glitch/common';
|
|
import { loadLocale } from 'flavours/glitch/locales';
|
|
import main from 'flavours/glitch/main';
|
|
import { loadPolyfills } from 'flavours/glitch/polyfills';
|
|
|
|
start();
|
|
|
|
loadPolyfills()
|
|
.then(loadLocale)
|
|
.then(main)
|
|
.catch((e: unknown) => {
|
|
console.error(e);
|
|
});
|