mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-01-15 20:22:59 -05:00
9e66c07be7
Port b0780cfeeda641645ea65da257a72ec507e71647 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);
|
|
});
|