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 23:43:39 +02:00
import { loadLocale } from '../mastodon/load_locale';
import { loadPolyfills } from '../mastodon/polyfills';
start();
2023-05-31 23:43:39 +02:00
loadPolyfills().then(loadLocale).then(async () => {
2022-10-03 23:08:38 +02:00
const { default: main } = await import('mastodon/main');
return main();
}).catch(e => {
console.error(e);
});