~cytrogen/masto-fe

ref: aa57f7e3e20ac66fa99ce20dab8cfccfce7c3e66 masto-fe/app/javascript/packs/application.js -rw-r--r-- 357 bytes
aa57f7e3 — Claire Merge commit '5fae2de454806730742b7be7435ae1c4fb97cf3c' into glitch-soc/merge-upstream 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);
});