~cytrogen/masto-fe

ref: 44cd88adc4e2f4028dcc2b08b98368f0dc90cee4 masto-fe/app/javascript/packs/application.js -rw-r--r-- 357 bytes
44cd88ad — Renaud Chaput Upgrade react-intl (#24906) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import './public-path';
import { start } from '../mastodon/common';
import { loadLocale } from '../mastodon/load_locale';
import { loadPolyfills } from '../mastodon/polyfills';

start();

loadPolyfills().then(loadLocale).then(async () => {
  const { default: main } = await import('mastodon/main');

  return main();
}).catch(e => {
  console.error(e);
});