application.js 245 B

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