mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
10 lines
221 B
JavaScript
10 lines
221 B
JavaScript
import loadPolyfills from '../mastodon/load_polyfills';
|
|
import { start } from '../mastodon/common';
|
|
|
|
start();
|
|
|
|
loadPolyfills().then(() => {
|
|
require('../mastodon/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|