application.js 313 B

123456789101112131415
  1. import './public-path';
  2. import main from "mastodon/main";
  3. import { start } from '../mastodon/common';
  4. import { loadLocale } from '../mastodon/locales';
  5. import { loadPolyfills } from '../mastodon/polyfills';
  6. start();
  7. loadPolyfills()
  8. .then(loadLocale)
  9. .then(main)
  10. .catch(e => {
  11. console.error(e);
  12. });