application.js 287 B

12345678910111213
  1. import './public-path';
  2. import loadPolyfills from '../mastodon/load_polyfills';
  3. import { start } from '../mastodon/common';
  4. start();
  5. loadPolyfills().then(async () => {
  6. const { default: main } = await import('mastodon/main');
  7. return main();
  8. }).catch(e => {
  9. console.error(e);
  10. });