~cytrogen/masto-fe

ref: d907e7914094cfbbd54c2662ff09a6113ed526e9 masto-fe/app/javascript/packs/application.js -rw-r--r-- 286 bytes
d907e791 — Claire Merge pull request #2242 from ClearlyClaire/glitch-soc/merge-upstream 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
import './public-path';
import { start } from '../mastodon/common';
import { loadPolyfills } from '../mastodon/polyfills';

start();

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

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