mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 16:58:06 +01:00
9e66c07be7
Port b0780cfeed
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
11 lines
277 B
JavaScript
11 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);
|
|
});
|