2
0
Files
mastodon/app/javascript/entrypoints/application.ts
2024-04-29 08:02:41 +00:00

16 lines
324 B
TypeScript

import './public-path';
import main from 'mastodon/main';
import { start } from '../mastodon/common';
import { loadLocale } from '../mastodon/locales';
import { loadPolyfills } from '../mastodon/polyfills';
start();
loadPolyfills()
.then(loadLocale)
.then(main)
.catch((e: unknown) => {
console.error(e);
});