1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-15 23:28:31 +09:00
YuruToot/app/javascript/flavours/glitch/packs/application.js

16 lines
336 B
JavaScript
Raw Normal View History

import 'packs/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';
2017-12-04 16:26:40 +09:00
start();
loadPolyfills()
.then(loadLocale)
.then(main)
.catch(e => {
console.error(e);
});