mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 20:32:56 +00:00
9e66c07be7
Port b0780cfeed
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
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);
|
|
});
|