~cytrogen/masto-fe

ref: 00c222377db0e305ac3f4a15bf1c18eb89c1f45f masto-fe/app/javascript/packs/application.js -rw-r--r-- 286 bytes
00c22237 — Matt Jankowski Remove unused Settings::Extend module (#25214) 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);
});