1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-16 23:59:11 +09:00
YuruToot/app/javascript/flavours/glitch/entrypoints/application.js

16 lines
344 B
JavaScript
Raw Normal View History

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