1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/javascript/packs/application.js

15 lines
357 B
JavaScript
Raw Normal View History

import './public-path';
import { start } from '../mastodon/common';
2023-05-31 14:43:39 -07:00
import { loadLocale } from '../mastodon/load_locale';
import { loadPolyfills } from '../mastodon/polyfills';
start();
2023-05-31 14:43:39 -07:00
loadPolyfills().then(loadLocale).then(async () => {
2022-10-03 14:08:38 -07:00
const { default: main } = await import('mastodon/main');
return main();
}).catch(e => {
console.error(e);
});