1
0
puyopuyotetr.is/app/javascript/flavours/glitch/entrypoints/application.ts

16 lines
355 B
TypeScript
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: unknown) => {
console.error(e);
});