about summary refs log tree commit diff
path: root/app/javascript/packs/application.js
blob: c65ebed74f8b94abf31111d7aa395e2a33a42ba4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import loadPolyfills from '../mastodon/load_polyfills';
import { start } from '../mastodon/common';

start();

loadPolyfills().then(() => {
  require('../mastodon/main').default();
}).catch(e => {
  console.error(e);
});